for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GBProd\ElasticaProviderBundle\Event;
use Symfony\Component\EventDispatcher\Event;
use GBProd\ElasticaProviderBundle\Provider\RegistryEntry;
/**
* Event triggered when providing has been started
*
* @author gbprod <[email protected]>
*/
class HasStartedProviding extends Event
{
private $entry;
public function __construct(RegistryEntry $entry)
$this->entry = $entry;
}
public function getEntry()
return $this->entry;