Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | abstract class AbstractFlightConsequence implements FlightConsequenceInterface |
||
12 | { |
||
13 | 84 | public function trigger( |
|
26 | 69 | ); |
|
27 | } |
||
28 | |||
29 | protected abstract function triggerSpecific( |
||
30 | ShipWrapperInterface $wrapper, |
||
31 | FlightRouteInterface $flightRoute, |
||
32 | MessageCollectionInterface $messages |
||
33 | ): void; |
||
34 | } |
||
35 |