Newscoop\Entity\Theme\Loader\LocalLoader::__construct PHP Метод

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

public __construct ( string $path )
$path string
    public function __construct($path)
    {
        $this->path = realpath($path);
        if (!$this->path) {
            throw new \InvalidArgumentException("'{$path}' not found");
        }
    }