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;
/**
* Event triggered when a document has been provided
*
* @author gbprod <[email protected]>
*/
class HasProvidedDocument extends Event
{
* @var string
private $id;
* @param string $id
public function __construct($id)
$this->id = $id;
}
* Get the id
* @return string
public function getId()
return $this->id;