for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HDNET\Calendarize\Event;
final class IndexRepositoryDefaultConstraintEvent
{
/**
* @var array
*/
private $indexIds;
private $indexTypes;
private $additionalSlotArguments;
public function __construct(array $indexIds, array $indexTypes, array $additionalSlotArguments)
$this->indexIds = $indexIds;
$this->indexTypes = $indexTypes;
$this->additionalSlotArguments = $additionalSlotArguments;
}
public function getIndexIds(): array
return $this->indexIds;
public function setIndexIds(array $indexIds): void
public function getIndexTypes(): array
return $this->indexTypes;
public function getAdditionalSlotArguments(): array
return $this->additionalSlotArguments;