mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-22 00:51:01 +00:00
Fix CS
This commit is contained in:
parent
58243b7fcb
commit
6740020b7b
3 changed files with 7 additions and 7 deletions
|
@ -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' => [
|
||||
|
|
|
@ -37,7 +37,7 @@ class Version20170719231144 extends WallabagMigration
|
|||
WHERE LOWER(label) = :label
|
||||
ORDER BY id ASC',
|
||||
[
|
||||
'label' => $label,
|
||||
'label' => $label,
|
||||
]
|
||||
);
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
||||
|
|
Loading…
Reference in a new issue