Example #1
0
 /**
  * Sets a property. Proxies the request to the underlying project.
  *
  * @param      string The name of the property.
  * @param      mixed The value of the property.
  *
  * @author     Noah Fontes <*****@*****.**>
  * @since      1.0.0
  */
 public function setProperty($name, $value)
 {
     if (!self::isPropertyProtected($name)) {
         $this->proxied->setProperty($name, $value);
     }
     parent::setProperty($name, $value);
 }