22 lines
316 B
PHP
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;
|
|
}
|
|
} |