SearchDataDTO.php 346 B

12345678910111213141516171819
  1. <?php
  2. namespace App\DTO\Search;
  3. class SearchDataDTO
  4. {
  5. public function __construct(
  6. public int $took,
  7. public HitsDTO $hits,
  8. ) {}
  9. public static function fromArray(array $data): self
  10. {
  11. return new self(
  12. took: $data['took'],
  13. hits: HitsDTO::fromArray($data['hits'])
  14. );
  15. }
  16. }