aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorCraig Roberts <craig@craig0990.co.uk>2018-04-10 19:50:26 +0800
committerJeremy Benoist <jeremy.benoist@gmail.com>2019-01-22 20:42:25 +0100
commit9133bd02d11c37c98b2c7c979e363cc7bff8f914 (patch)
tree0a5a7753fd03eac064c67765eb1a03dc7cc57e3d
parentb32057980e33e7ddd93480017496a589006b8260 (diff)
downloadwallabag-9133bd02d11c37c98b2c7c979e363cc7bff8f914.tar.gz
wallabag-9133bd02d11c37c98b2c7c979e363cc7bff8f914.tar.zst
wallabag-9133bd02d11c37c98b2c7c979e363cc7bff8f914.zip
[wallabag/wallabag#2611] Fix PHPCS lint errors
-rw-r--r--src/Wallabag/ApiBundle/Controller/SearchRestController.php6
-rw-r--r--tests/Wallabag/ApiBundle/Controller/SearchRestControllerTest.php7
2 files changed, 2 insertions, 11 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/SearchRestController.php b/src/Wallabag/ApiBundle/Controller/SearchRestController.php
index c0b2cb24..6620107d 100644
--- a/src/Wallabag/ApiBundle/Controller/SearchRestController.php
+++ b/src/Wallabag/ApiBundle/Controller/SearchRestController.php
@@ -10,13 +10,7 @@ use Pagerfanta\Adapter\DoctrineORMAdapter;
10use Pagerfanta\Pagerfanta; 10use Pagerfanta\Pagerfanta;
11use Symfony\Component\HttpFoundation\JsonResponse; 11use Symfony\Component\HttpFoundation\JsonResponse;
12use Symfony\Component\HttpFoundation\Request; 12use Symfony\Component\HttpFoundation\Request;
13use Symfony\Component\HttpFoundation\Response;
14use Symfony\Component\HttpKernel\Exception\HttpException;
15use Symfony\Component\Routing\Generator\UrlGeneratorInterface; 13use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
16use Wallabag\CoreBundle\Entity\Entry;
17use Wallabag\CoreBundle\Entity\Tag;
18use Wallabag\CoreBundle\Event\EntryDeletedEvent;
19use Wallabag\CoreBundle\Event\EntrySavedEvent;
20 14
21class SearchRestController extends WallabagRestController 15class SearchRestController extends WallabagRestController
22{ 16{
diff --git a/tests/Wallabag/ApiBundle/Controller/SearchRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/SearchRestControllerTest.php
index 5900ae53..f096f21b 100644
--- a/tests/Wallabag/ApiBundle/Controller/SearchRestControllerTest.php
+++ b/tests/Wallabag/ApiBundle/Controller/SearchRestControllerTest.php
@@ -4,9 +4,6 @@ namespace Tests\Wallabag\ApiBundle\Controller;
4 4
5use Tests\Wallabag\ApiBundle\WallabagApiTestCase; 5use Tests\Wallabag\ApiBundle\WallabagApiTestCase;
6use Wallabag\CoreBundle\Entity\Entry; 6use Wallabag\CoreBundle\Entity\Entry;
7use Wallabag\CoreBundle\Entity\Tag;
8use Wallabag\CoreBundle\Helper\ContentProxy;
9use Wallabag\UserBundle\Entity\User;
10 7
11class SearchRestControllerTest extends WallabagApiTestCase 8class SearchRestControllerTest extends WallabagApiTestCase
12{ 9{
@@ -15,7 +12,7 @@ class SearchRestControllerTest extends WallabagApiTestCase
15 $this->client->request('GET', '/api/search', [ 12 $this->client->request('GET', '/api/search', [
16 'page' => 1, 13 'page' => 1,
17 'perPage' => 2, 14 'perPage' => 2,
18 'term' => 'entry' // 6 results 15 'term' => 'entry', // 6 results
19 ]); 16 ]);
20 17
21 $this->assertSame(200, $this->client->getResponse()->getStatusCode()); 18 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
@@ -45,7 +42,7 @@ class SearchRestControllerTest extends WallabagApiTestCase
45 public function testGetSearchWithNoLimit() 42 public function testGetSearchWithNoLimit()
46 { 43 {
47 $this->client->request('GET', '/api/search', [ 44 $this->client->request('GET', '/api/search', [
48 'term' => 'entry' 45 'term' => 'entry',
49 ]); 46 ]);
50 47
51 $this->assertSame(200, $this->client->getResponse()->getStatusCode()); 48 $this->assertSame(200, $this->client->getResponse()->getStatusCode());