for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HDNET\Calendarize\Event;
use TYPO3\CMS\Extbase\Persistence\QueryInterface;
final class IndexRepositoryTimeSlotEvent
{
/**
* @var array
*/
private $constraints;
* @var QueryInterface
private $query;
public function __construct(array $constraints, QueryInterface $query)
$this->constraints = $constraints;
$this->query = $query;
}
public function getConstraints(): array
return $this->constraints;
public function getQuery(): QueryInterface
return $this->query;
public function setConstraints(array $constraints): void