ApaiIO\ApaiIO::applyResponseTransformer PHP Метод

applyResponseTransformer() защищенный метод

Applies a responsetransformer.
protected applyResponseTransformer ( mixed $response ) : mixed
$response mixed The response of the request
Результат mixed
    protected function applyResponseTransformer($response)
    {
        if (null === ($responseTransformer = $this->configuration->getResponseTransformer())) {
            return $response;
        }
        return $responseTransformer->transform($response);
    }