for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GBProd\ElasticsearchDataProviderBundle\Event;
use Symfony\Component\EventDispatcher\Event;
/**
* Event triggered when handling has been started
*
* @author gbprod <[email protected]>
*/
class HasStartedHandling extends Event
{
* @var array<RegistryEntry>
private $entries;
* @param array<RegistryEntry> $entries
public function __construct($entries)
$this->entries = $entries;
}
* Get entries
* @return array<RegistryEntry>
public function getEntries()
return $this->entries;