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");
        }
    }