コード例 #1
0
ファイル: ObjectArrayStorage.php プロジェクト: brick/brick
 /**
  * Returns whether this storage contains the given object.
  *
  * @param object $object The object to test.
  *
  * @return boolean True if this storage contains the object, false otherwise.
  */
 public function has($object)
 {
     return $this->storage->has($object);
 }