| 1 | <?php declare(strict_types=1); |
||
| 10 | final class DetailedCommitCommand |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $fullName; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $sha; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $fullName |
||
| 24 | * @param string $sha |
||
| 25 | */ |
||
| 26 | public function __construct(string $fullName, string $sha) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function getFullName(): string |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | public function getSha(): string |
||
| 47 | } |
||
| 48 |