From 8f8f6973c07ee1bdef823779899ed561bfff5387 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 6 Nov 2017 04:54:02 +0300 Subject: [PATCH] AbstractApi now has 'abstract' definition. --- .../Bundle/PointToolsBundle/Service/Api/AbstractApi.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Skobkin/Bundle/PointToolsBundle/Service/Api/AbstractApi.php b/src/Skobkin/Bundle/PointToolsBundle/Service/Api/AbstractApi.php index 10be5a7..a6871eb 100644 --- a/src/Skobkin/Bundle/PointToolsBundle/Service/Api/AbstractApi.php +++ b/src/Skobkin/Bundle/PointToolsBundle/Service/Api/AbstractApi.php @@ -4,15 +4,13 @@ namespace Skobkin\Bundle\PointToolsBundle\Service\Api; use GuzzleHttp\ClientInterface; use GuzzleHttp\Exception\TransferException; -use JMS\Serializer\{ - DeserializationContext, SerializerInterface -}; +use JMS\Serializer\{DeserializationContext, SerializerInterface}; use Psr\Http\Message\{ResponseInterface, StreamInterface}; use Psr\Log\LoggerInterface; use Skobkin\Bundle\PointToolsBundle\Exception\Api\{ForbiddenException, NetworkException, NotFoundException, ServerProblemException, UnauthorizedException}; use Symfony\Component\HttpFoundation\Response as SymfonyResponse; -class AbstractApi +abstract class AbstractApi { /** * @var ClientInterface HTTP-client from Guzzle