Kraken\Loop\Bridge\React\ReactLoop::stop PHP 메소드

stop() 공개 메소드

public stop ( )
    public function stop()
    {
    }

Usage 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();
 }