| 1 | <?php |
||
| 32 | class PriceUpsellWithoutPNRConv extends InformativePricingWithoutPNR13 |
||
| 33 | { |
||
| 34 | /** |
||
| 35 | * InformativeBestPricingWithoutPNR13 constructor. |
||
| 36 | * |
||
| 37 | * @param FareInformativeBestPricingWithoutPnrOptions|null $options |
||
|
|
|||
| 38 | */ |
||
| 39 | public function __construct(FarePriceUpsellWithoutPNROptions $options = null) |
||
| 43 | } |
||
| 44 |
This check looks for
@paramannotations where the type inferred by our type inference engine differs from the declared type.It makes a suggestion as to what type it considers more descriptive.
Most often this is a case of a parameter that can be null in addition to its declared types.