hasProperty() 공개 메소드

Return true if a property with the given name exists.
public hasProperty ( $name ) : boolean
리턴 boolean
예제 #1
0
 /**
  * {@inheritDoc}
  */
 public function offsetExists($offset)
 {
     $this->init();
     return $this->structureMetadata->hasProperty($offset);
 }
예제 #2
0
 /**
  * {@inheritdoc}
  */
 public function hasProperty($name)
 {
     return $this->structure->hasProperty($name);
 }