コード例 #1
0
ファイル: controller.php プロジェクト: xihewang/atoum
 protected function buildCall($function, array $arguments)
 {
     $call = parent::buildCall($function, $arguments);
     if ($this->mockClass !== null) {
         $call->setDecorator(new decorators\addClass($this->mockClass));
     }
     return $call;
 }