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