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