20 lines
381 B
PHP
20 lines
381 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\BusProNet\Model;
|
|
|
|
final readonly class Agency
|
|
{
|
|
public function __construct(
|
|
public int $id,
|
|
public string $name,
|
|
public string $code,
|
|
public ?string $street = null,
|
|
public ?string $postCode = null,
|
|
public ?string $city = null,
|
|
public ?string $phone = null,
|
|
) {
|
|
}
|
|
}
|