for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PSB\Core\Pipeline;
abstract class PipelineTerminator implements StageConnectorInterface, PipelineTerminatorInterface
{
/**
* @param PipelineStageContext $context
*
* @return void
*/
abstract protected function terminate($context);
* @param callable $next
public function invoke($context, callable $next)
$this->terminate($context);
}