コード例 #1
0
 /**
  * Add a related property to this actor.
  *
  * @param string $name  name of property
  * @param string $value value of property
  * @param string $options array of optional parameters
  * @return QubitActor this object
  */
 public function addProperty($name, $value, $options = array())
 {
     $property = QubitProperty::addUnique($this->id, $name, $value, $options);
     return $this;
 }