Пример #1
0
 /**
  *  check if this object has specified key
  *
  * @param string $key            Key string to get
  *
  * @return bool      TRUE if this object has specified key, otherwise FALSE
  */
 public function keyExists($key)
 {
     //        Charcoal_ParamTrait::validateString( 1, $key );
     $key = us($key);
     return parent::keyExists($key);
 }