__get() 공개 메소드

public __get ( $property )
예제 #1
0
파일: adapter.php 프로젝트: atoum/atoum
 public function __get($property)
 {
     switch (strtolower($property)) {
         case 'withanyarguments':
         case 'withoutanyargument':
             return $this->{$property}();
         default:
             return parent::__get($property);
     }
 }