예제 #1
0
파일: Order.php 프로젝트: Jeffliu/wechat
 public function __set($property, $value)
 {
     if (!in_array($property, static::$params)) {
         throw new Exception(sprintf('"%s" is required', $property));
     }
     return parent::__set($property, $value);
 }