Nette\Reflection\AnnotationsParser::getCacheStorage PHP Метод

getCacheStorage() публичный статический Метод

public static getCacheStorage ( ) : Nette\Caching\IStorage
Результат Nette\Caching\IStorage
    public static function getCacheStorage()
    {
        if (!self::$cacheStorage) {
            self::$cacheStorage = new Nette\Caching\Storages\MemoryStorage();
        }
        return self::$cacheStorage;
    }