コード例 #1
0
ファイル: MockAsserter.php プロジェクト: cubiche/tests
 /**
  * {@inheritdoc}
  *
  * @see \mageekguy\atoum\asserters\adapter::__get()
  */
 public function __get($property)
 {
     switch (strtolower($property)) {
         case 'with':
             return $this->{$property}();
         default:
             return parent::__get($property);
     }
 }