Doctrine\OXM\Storage\FileSystemStorage::__construct PHP Метод

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

Construct a file system store with a specific base path
public __construct ( $baseStoragePath, $defaultFileExtension = 'xml' )
    public function __construct($baseStoragePath, $defaultFileExtension = 'xml')
    {
        // todo - ensure storage path exists
        $this->storagePath = $baseStoragePath;
        $this->fileExtension = $defaultFileExtension;
    }