예제 #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);
 }