run() публичный Метод

public run ( Tolerance\Operation\Operation $operation )
$operation Tolerance\Operation\Operation
Пример #1
0
 /**
  * @Given there is an operation in a buffered runner
  */
 public function thereIsAnOperationInABufferedRunner()
 {
     $this->bufferedOperationRunner->run(new Callback(function () {
         $this->response = 'Buffered operation ran!';
     }));
 }