Spaces:
No application file
No application file
declare(strict_types=1); | |
namespace Mautic\IntegrationsBundle\Event; | |
use Mautic\IntegrationsBundle\Sync\SyncDataExchange\Internal\Object\ObjectInterface; | |
use Symfony\Contracts\EventDispatcher\Event; | |
class InternalObjectEvent extends Event | |
{ | |
private array $objects = []; | |
public function addObject(ObjectInterface $object): void | |
{ | |
$this->objects[] = $object; | |
} | |
/** | |
* @return ObjectInterface[] | |
*/ | |
public function getObjects(): array | |
{ | |
return $this->objects; | |
} | |
} | |