示例#1
0
文件: TextNode.php 项目: jivoo/jivoo
 /**
  * {@inheritdoc}
  */
 public function __get($property)
 {
     switch ($property) {
         case 'text':
             return $this->{$property};
     }
     return parent::__get($property);
 }
示例#2
0
文件: PhpNode.php 项目: jivoo/jivoo
 /**
  * {@inheritdoc}
  */
 public function __get($property)
 {
     switch ($property) {
         case 'code':
         case 'statement':
             return $this->{$property};
     }
     return parent::__get($property);
 }