Neos\Flow\ResourceManagement\Storage\FileSystemStorage::initializeObject PHP 메소드

initializeObject() 공개 메소드

Initializes this resource storage
public initializeObject ( ) : void
리턴 void
    public function initializeObject()
    {
        if (!is_dir($this->path) && !is_link($this->path)) {
            throw new Exception('The directory "' . $this->path . '" which was configured as a resource storage does not exist.', 1361533189);
        }
    }