for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Padawan\Domain\Event;
use Symfony\Component\EventDispatcher\Event;
class ProjectLoadedEvent extends Event
{
public function __construct($project)
$this->project = $project;
}
public $project;