From 6740020b7b806d44d17f5006f077b1aa47f0d49f Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Tue, 19 Mar 2024 09:28:19 +0100 Subject: [PATCH] Fix CS --- app/AppKernel.php | 8 ++++---- migrations/Version20170719231144.php | 2 +- tests/Controller/Api/EntryRestControllerTest.php | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/AppKernel.php b/app/AppKernel.php index fa624eb9a..7096ff3d9 100644 --- a/app/AppKernel.php +++ b/app/AppKernel.php @@ -72,10 +72,10 @@ class AppKernel extends Kernel $loader->load(function ($container) { if ($container->getParameter('use_webpack_dev_server')) { $container->loadFromExtension('framework', [ - 'assets' => [ - 'base_url' => 'http://localhost:8080/', - ], - ]); + 'assets' => [ + 'base_url' => 'http://localhost:8080/', + ], + ]); } else { $container->loadFromExtension('framework', [ 'assets' => [ diff --git a/migrations/Version20170719231144.php b/migrations/Version20170719231144.php index dc93ef829..3e8afcf09 100644 --- a/migrations/Version20170719231144.php +++ b/migrations/Version20170719231144.php @@ -37,7 +37,7 @@ class Version20170719231144 extends WallabagMigration WHERE LOWER(label) = :label ORDER BY id ASC', [ - 'label' => $label, + 'label' => $label, ] ); diff --git a/tests/Controller/Api/EntryRestControllerTest.php b/tests/Controller/Api/EntryRestControllerTest.php index eb51d425b..b5011f637 100644 --- a/tests/Controller/Api/EntryRestControllerTest.php +++ b/tests/Controller/Api/EntryRestControllerTest.php @@ -870,8 +870,8 @@ class EntryRestControllerTest extends WallabagApiTestCase } $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [ - 'origin_url' => null, - ]); + 'origin_url' => null, + ]); $this->assertSame(200, $this->client->getResponse()->getStatusCode());