Illuminate\Foundation\ProviderRepository::__construct PHP Метод

__construct() публичный Метод

Create a new service repository instance.
public __construct ( Illuminate\Filesystem\Filesystem $files, string $manifestPath ) : void
$files Illuminate\Filesystem\Filesystem
$manifestPath string
Результат void
    public function __construct(Filesystem $files, $manifestPath)
    {
        $this->files = $files;
        $this->manifestPath = $manifestPath;
        $this->isSae = $this->detectSae();
        if ($this->isSae) {
            $this->memcache = memcache_init();
        }
    }