| 1 | <?php declare(strict_types=1); |
||
| 10 | final class LatestBuildCommand |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $accountName; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $projectSlug; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * LatestBuildCommand constructor. |
||
| 24 | * @param string $accountName |
||
| 25 | * @param string $projectSlug |
||
| 26 | */ |
||
| 27 | public function __construct($accountName, $projectSlug) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getAccountName(): string |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function getProjectSlug(): string |
||
| 48 | } |
||
| 49 |