Example #1
0
 /**
  * Is property defined?
  *
  * @param  string  property name
  * @return bool
  */
 public function __isset($name)
 {
     return ObjectMixin::has($this, $name);
 }
Example #2
0
 public function __call($name, $args)
 {
     return ObjectMixin::callProperty($this, $name, $args);
 }
Example #3
0
 /**
  * Removes property.
  * @param  string  property name
  * @return void
  * @throws MemberAccessException
  */
 public function __unset($name)
 {
     ObjectMixin::remove($this, $name);
 }
Example #4
0
 /**
  * Access to undeclared property.
  * @param string property name
  * @return void
  * @throws MemberAccessException
  */
 public function __unset($name)
 {
     ObjectMixin::remove($this, $name);
     // @codeCoverageIgnoreStart
 }