for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PSB\Core;
class EndpointControlToken
{
/**
* @var bool
*/
private $isShutdownRequested = false;
public function requestShutdown()
$this->isShutdownRequested = true;
}
* @return bool
public function isShutdownRequested()
return $this->isShutdownRequested;