for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HDNET\Calendarize\Event;
final class IndexPreUpdateEvent
{
/**
* @var array
*/
private $neededItems;
* @var string
private $tableName;
* @var int
private $uid;
public function __construct(array $neededItems, string $tableName, int $uid)
$this->neededItems = $neededItems;
$this->tableName = $tableName;
$this->uid = $uid;
}
public function getNeededItems(): array
return $this->neededItems;
public function setNeededItems(array $neededItems): void
public function getTableName(): string
return $this->tableName;
public function getUid(): int
return $this->uid;