File: /home/accemeff/vendor/craftcms/cms/bootstrap/console.php
<?php
/**
* Craft console bootstrap file.
*
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
// Make sure they're running PHP 7+
if (PHP_VERSION_ID < 70000) {
exit("Craft requires PHP 7.0 or later.\n");
}
mb_detect_order('auto');
// Normalize how PHP's string methods (strtoupper, etc) behave.
setlocale(
LC_CTYPE,
'C.UTF-8', // libc >= 2.13
'C.utf8', // different spelling
'en_US.UTF-8', // fallback to lowest common denominator
'en_US.utf8' // different spelling for fallback
);
// Set default timezone to UTC
date_default_timezone_set('UTC');
$appType = 'console';
return require __DIR__ . '/bootstrap.php';