27 lines
528 B
PHP
Executable File
27 lines
528 B
PHP
Executable File
<?php
|
|
|
|
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;
|
|
}
|
|
}
|