vendor/easycorp/easyadmin-bundle/src/Dto/BatchActionDto.php line 16
<?phpnamespace EasyCorp\Bundle\EasyAdminBundle\Dto;/*** @author Javier Eguiluz <javier.eguiluz@gmail.com>*/class BatchActionDto{private string $name;private array $entityIds;private string $entityFqcn;private string $referrerUrl;private string $csrfToken;public function __construct(string $name, array $entityIds, string $entityFqcn, string $referrerUrl, string $csrfToken){$this->name = $name;$this->entityIds = $entityIds;$this->entityFqcn = $entityFqcn;$this->referrerUrl = $referrerUrl;$this->csrfToken = $csrfToken;}public function getName(): string{return $this->name;}public function getEntityIds(): array{return $this->entityIds;}public function getEntityFqcn(): string{return $this->entityFqcn;}public function getReferrerUrl(): string{return $this->referrerUrl;}public function getCsrfToken(): string{return $this->csrfToken;}}