Doctrine\OXM\Storage\FileSystemStorage::__construct PHP Method

__construct() public method

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