From da3286193fae85ab314e0985783532bac76a9831 Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle <patrizio@bekerle.com> Date: Thu, 18 Nov 2021 13:37:57 +0100 Subject: [PATCH] Fix linter errors --- src/Service/LDAPApi.php | 1 - tests/PersonTest.php | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Service/LDAPApi.php b/src/Service/LDAPApi.php index 37c049d..75edf81 100644 --- a/src/Service/LDAPApi.php +++ b/src/Service/LDAPApi.php @@ -24,7 +24,6 @@ use Psr\Container\ContainerInterface; use Psr\Log\LoggerAwareInterface; use Psr\Log\LoggerAwareTrait; use Symfony\Component\Cache\Psr16Cache; -use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; diff --git a/tests/PersonTest.php b/tests/PersonTest.php index dba64b0..f037d11 100644 --- a/tests/PersonTest.php +++ b/tests/PersonTest.php @@ -36,8 +36,8 @@ class PersonTest extends ApiTestCase 'attributes' => [ 'email' => 'email', 'birthday' => 'dateofbirth', - ] - ] + ], + ], ]); $this->provider = new LDAPPersonProvider($this->api); -- GitLab