set() public method

public set ( string $property, mixed $value = null ) : mixed
$property string
$value mixed
return mixed
Exemplo n.º 1
0
 /**
  * @param string $property
  * @param mixed  $value
  *
  * @return mixed
  */
 public function __set($property, $value = null)
 {
     return $this->caller->set($property, $value);
 }