Jackalope\Transport\TransportInterface::getRepositoryDescriptors PHP Method

getRepositoryDescriptors() public method

This may be called before login or accessing any specific workspace. With this, you can get some information without being logged in. Must return at least the constants defined in \PHPCR\RepositoryInterface Doc about each constant is found there. Implementations may add their own constants. The transport has to make sure the correct boolean values are set for optional features. Jackalope will rely on the interface implementation, but client code could check the descriptors and be confused if you announce invalid capabilities here.
See also: http://www.day.com/specs/jcr/2.0/24_Repository_Compliance.html#24.2%20Repository%20Descriptors
See also: RepositoryInterface
public getRepositoryDescriptors ( ) : array
return array with name => value/array of value for the descriptors
    public function getRepositoryDescriptors();

Usage Example

 /**
  * {@inheritDoc}
  */
 public function getRepositoryDescriptors()
 {
     return $this->transport->getRepositoryDescriptors();
 }
All Usage Examples Of Jackalope\Transport\TransportInterface::getRepositoryDescriptors