release() public method

release lock
public release ( ) : boolean
return boolean
 public function release($server, $loop)
 {
     return $this->sem->release();
 }
Ejemplo n.º 2
0
 public function testReleaseException()
 {
     $this->setExpectedException("RuntimeException");
     $this->lock->release();
 }