Exemple #1
0
 /**
  * Removes property.
  * @param  string  property name
  * @return void
  * @throws MemberAccessException
  */
 public function __unset($name)
 {
     ObjectMixin::remove($this, $name);
 }
Exemple #2
0
 /**
  * Access to undeclared property.
  * @param string property name
  * @return void
  * @throws MemberAccessException
  */
 public function __unset($name)
 {
     ObjectMixin::remove($this, $name);
     // @codeCoverageIgnoreStart
 }