hasCapability() public méthode

Checks if this backend has a certain capability.
public hasCapability ( string $capability ) : boolean
$capability string The capability to check for.
Résultat boolean Supported or not.
Exemple #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);
 }