Go\Core\AspectKernel::getDefaultOptions PHP Method

getDefaultOptions() protected method

debug - boolean Determines whether or not kernel is in debug mode appDir - string Path to the application root directory. cacheDir - string Path to the cache directory where compiled classes will be stored cacheFileMode - integer Binary mask of permission bits that is set to cache files features - integer Binary mask of features includePaths - array Whitelist of directories where aspects should be applied. Empty for everywhere. excludePaths - array Blacklist of directories or files where aspects shouldn't be applied.
protected getDefaultOptions ( ) : array
return array
    protected function getDefaultOptions()
    {
        return array('debug' => false, 'appDir' => __DIR__ . '/../../../../../', 'cacheDir' => null, 'cacheFileMode' => 0770 & ~umask(), 'features' => 0, 'includePaths' => [], 'excludePaths' => [], 'containerClass' => static::$containerClass);
    }