16 lines
319 B
PHP
16 lines
319 B
PHP
<?php
|
|
|
|
namespace App\Domain\Location\Model;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
class ZipCode
|
|
{
|
|
public function __construct(
|
|
public readonly string $code,
|
|
) {
|
|
if (strlen($code) >= 16) {
|
|
throw new InvalidArgumentException('Zip code cannot be longer than 16 characters');
|
|
}
|
|
}
|
|
} |