evwiki/src/Domain/Model/Cars/BrandCollection.php
2025-06-09 15:42:22 +02:00

22 lines
316 B
PHP

<?php
namespace App\Domain\Model\Cars;
class BrandCollection
{
/**
* @param Brand[] $brands
*/
public function __construct(
private readonly array $brands,
) {
}
/**
* @return Brand[]
*/
public function array(): array
{
return $this->brands;
}
}