Mmoreram\PHPFormatter\Console\Application::__construct PHP Method

__construct() public method

Construct method.
public __construct ( )
    public function __construct()
    {
        if (function_exists('ini_set') && extension_loaded('xdebug')) {
            ini_set('xdebug.show_exception_trace', false);
            ini_set('xdebug.scream', false);
        }
        if (function_exists('date_default_timezone_set') && function_exists('date_default_timezone_get')) {
            date_default_timezone_set(@date_default_timezone_get());
        }
        parent::__construct('PHPFormatter');
    }