for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Amadeus\Client\ResponseHandler\Fare;
use Amadeus\Client\Exception;
use Amadeus\Client\ResponseHandler\StandardResponseHandler;
use Amadeus\Client\Result;
use Amadeus\Client\Session\Handler\SendResult;
/**
* Class HandlerGetFareFamilyDescription
* @package Amadeus\Client\ResponseHandler\Fare
* @author Valerii Nezhurov <[email protected]>
*/
class HandlerGetFareFamilyDescription extends StandardResponseHandler
{
* @param SendResult $response
* @return Result
* @throws Exception
public function analyze(SendResult $response)
return $this->analyzeSimpleResponseErrorCodeAndMessage($response);
}