hasCapability() public method

Checks if this backend has a certain capability.
public hasCapability ( string $capability ) : boolean
$capability string The capability to check for.
return boolean Supported or not.
Ejemplo n.º 1
0
 /**
  * Checks if this backend has a certain capability.
  *
  * @param string $capability  The capability to check for.
  *
  * @return boolean  Supported or not.
  */
 public function hasCapability($capability)
 {
     return $this->_driver->hasCapability($capability);
 }