for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of Symnedi.
* Copyright (c) 2014 Tomas Votruba (http://tomasvotruba.cz)
*/
namespace Symnedi\EventDispatcher\Event;
use Nette\Application\Application;
use Symfony\Component\EventDispatcher\Event;
final class ApplicationEvent extends Event
{
* @var Application
private $application;
public function __construct(Application $application)
$this->application = $application;
}
* @return Application
public function getApplication()
return $this->application;