Newer
Older
<?php
namespace App\Shared\Collection;
use App\Shared\Dto\FileDto;
class FileCollection extends DtoCollection
{
private string $collectionType = FileDto::class;
public function __construct(array $data = [])
{
parent::__construct($this->collectionType, $data);
}
}