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());