Kraken\Loop\Bridge\React\ReactLoop::stop PHP Method

stop() public method

public stop ( )
    public function stop()
    {
    }

Usage Example

Example #1
0
 /**
  *
  */
 public function testApiStop_NeverStopsLoop()
 {
     $this->markTestSkipped('Seems there is a problem with PHPUnit 5.2 compatibility here.');
     $loop = $this->createLoopMock();
     $react = new ReactLoop($loop);
     $loop->expects($this->never())->method('stop');
     $react->stop();
 }