Skip to content
Snippets Groups Projects
FileCollection.php 292 B
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);
    }
}