Illuminate\Foundation\ProviderRepository::__construct PHP Méthode

__construct() public méthode

Create a new service repository instance.
public __construct ( Illuminate\Filesystem\Filesystem $files, string $manifestPath ) : void
$files Illuminate\Filesystem\Filesystem
$manifestPath string
Résultat void
    public function __construct(Filesystem $files, $manifestPath)
    {
        $this->files = $files;
        $this->manifestPath = $manifestPath;
        $this->isSae = $this->detectSae();
        if ($this->isSae) {
            $this->memcache = memcache_init();
        }
    }