Recca0120\Terminal\Console\Commands\Composer::init PHP Метод

init() защищенный Метод

init.
protected init ( )
    protected function init()
    {
        error_reporting(-1);
        // $xdebug = new \Composer\XdebugHandler($this->getOutput());
        // $xdebug->check();
        // unset($xdebug);
        if (function_exists('ini_set')) {
            @ini_set('display_errors', 1);
            $memoryInBytes = function ($value) {
                $unit = strtolower(substr($value, -1, 1));
                $value = (int) $value;
                switch ($unit) {
                    case 'g':
                        $value *= 1024;
                        // no break (cumulative multiplier)
                    // no break (cumulative multiplier)
                    case 'm':
                        $value *= 1024;
                        // no break (cumulative multiplier)
                    // no break (cumulative multiplier)
                    case 'k':
                        $value *= 1024;
                }
                return $value;
            };
            $memoryLimit = trim(ini_get('memory_limit'));
            // Increase memory_limit if it is lower than 1GB
            if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 1024 * 1024 * 1024) {
                @ini_set('memory_limit', '1G');
            }
            unset($memoryInBytes, $memoryLimit);
        }
        if (defined('STDIN') === false) {
            define('STDIN', fopen('php://stdin', 'r'));
        }
        $basePath = $this->getLaravel()->basePath();
        chdir($basePath);
    }