| 1 | <?php declare(strict_types=1); |
||
| 10 | final class RepositoryIdCommand |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var int |
||
| 14 | */ |
||
| 15 | private $repositoryId; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param int $repositoryId |
||
| 19 | */ |
||
| 20 | 1 | public function __construct(int $repositoryId) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return int |
||
| 27 | */ |
||
| 28 | 1 | public function getRepositoryId(): int |
|
| 32 | } |
||
| 33 |