for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* amadeus-ws-client
*
* Copyright 2015 Leonardo Travel
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* @package Amadeus
* @license https://opensource.org/licenses/Apache-2.0 Apache 2.0
*/
namespace Amadeus\Client\Struct\Fare;
use Amadeus\Client\RequestOptions\FarePriceUpsellWithoutPNROptions;
* InformativeBestPricingWithoutPNR13
* @package Amadeus\Client\Struct\Fare
* @author Dieter Devlieghere <[email protected]>
class InformativePriceUpsellWithoutPNR16 extends InformativePricingWithoutPNR13
{
* InformativeBestPricingWithoutPNR13 constructor.
* @param FareInformativeBestPricingWithoutPnrOptions|null $options
$options
null|FarePriceUpsellWithoutPNROptions
This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.
@param
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.
public function __construct(FarePriceUpsellWithoutPNROptions $options = null)
parent::__construct($options);
}
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.