| 1 | <?php |
||
| 10 | final class ClassifyFlight implements CommandInterface |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var int |
||
| 15 | */ |
||
| 16 | private $flightId; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var int |
||
| 20 | */ |
||
| 21 | private $projectId; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param int $flightId |
||
| 25 | * @param int $projectId |
||
| 26 | */ |
||
| 27 | public function __construct($flightId, $projectId) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return int |
||
| 35 | */ |
||
| 36 | public function getFlightId(): int |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return int |
||
| 43 | */ |
||
| 44 | public function getProjectId(): int |
||
| 48 | |||
| 49 | } |