コード例 #1
0
ファイル: Product.php プロジェクト: dennisoderwald/basket
 /**
  * Get the private attributes
  *
  * @param string $key
  *
  * @return mixed
  */
 public function __get($key)
 {
     if (property_exists($this, $key)) {
         return $this->{$key};
     }
     if ($this->attributes->has($key)) {
         return $this->attributes->get($key);
     }
 }