1 | <?php |
||
6 | class Name |
||
7 | { |
||
8 | /** @var string */ |
||
9 | public $name; |
||
10 | |||
11 | /** @var int */ |
||
12 | public $sequence = 0; |
||
13 | |||
14 | public static function createWithSequence(string $name, int $sequence): Name |
||
22 | |||
23 | public static function create(string $name): Name |
||
30 | |||
31 | public function fullName(): string |
||
40 | |||
41 | protected function __construct() |
||
44 | } |