示例#1
0
 /**
  * Check if the offset exists
  *
  * Required by interface ArrayAccess
  *
  * @param   int   $offset
  * @return  bool
  */
 public function offsetExists($offset)
 {
     return KObjectArray::offsetExists($offset);
 }
示例#2
0
 /**
  * Test existence of a property
  *
  * @param  string  $name The property name.
  * @return boolean
  */
 public function hasProperty($name)
 {
     return parent::offsetExists($name);
 }