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

It returns an array of results.
public runBufferedOperations ( ) : mixed[]
Результат mixed[]
 function it_runs_all_the_buffered_operations(BufferedOperationRunner $bufferedOperationRunner, OperationRunnerRegistry $registry)
 {
     $this->beConstructedWith($registry);
     $registry->findAllByClass(BufferedOperationRunner::class)->willReturn([$bufferedOperationRunner]);
     $bufferedOperationRunner->runBufferedOperations()->shouldBeCalled();
     $this->onKernelTerminate();
 }