17 lines
282 B
PHP
Executable File
17 lines
282 B
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\CampaignBundle\Event;
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
|
|
class ExecutedBatchEvent extends AbstractLogCollectionEvent
|
|
{
|
|
/**
|
|
* @return ArrayCollection
|
|
*/
|
|
public function getExecuted()
|
|
{
|
|
return $this->logs;
|
|
}
|
|
}
|