for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Darkilliant\ProcessBundle\ProcessNotifier;
use Darkilliant\ProcessBundle\State\ProcessState;
use Darkilliant\ProcessBundle\Step\StepInterface;
/**
* @codeCoverageIgnore
*/
abstract class AbstractProcessNotifier implements ProcessNotifierInterface
{
public function onStartProcess(ProcessState $state, StepInterface $step)
return;
}
public function onStartIterableProcess(ProcessState $state, StepInterface $step)
public function onUpdateIterableProcess(ProcessState $state, StepInterface $step)
public function onEndProcess(ProcessState $state, StepInterface $step)
public function onExecutedProcess(ProcessState $state, StepInterface $step)
public function onSuccessLoop(ProcessState $state, StepInterface $step)
public function onFailedLoop(ProcessState $state, StepInterface $step)
public function onStartRunner(ProcessState $state)
public function onEndRunner(ProcessState $state, bool $successfull)