DebugKit\Panel\IncludePanel::_includePaths PHP Метод

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

Get the possible include paths
protected _includePaths ( ) : array
Результат array
    protected function _includePaths()
    {
        $paths = array_flip(array_filter(explode(PATH_SEPARATOR, get_include_path())));
        unset($paths['.']);
        return array_flip($paths);
    }