for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Deployee\Plugins\Deploy\Events;
use Symfony\Component\EventDispatcher\Event;
class PostRunDeploy extends Event
{
/**
* @var bool
*/
private $success;
* PostRunDeploy constructor.
* @param bool $success
public function __construct(bool $success)
$this->success = $success;
}
* @return bool
public function isSuccess(): bool
return $this->success;