forked from wallabag/wallabag
Fix CS
This commit is contained in:
@ -72,10 +72,10 @@ class AppKernel extends Kernel
|
|||||||
$loader->load(function ($container) {
|
$loader->load(function ($container) {
|
||||||
if ($container->getParameter('use_webpack_dev_server')) {
|
if ($container->getParameter('use_webpack_dev_server')) {
|
||||||
$container->loadFromExtension('framework', [
|
$container->loadFromExtension('framework', [
|
||||||
'assets' => [
|
'assets' => [
|
||||||
'base_url' => 'http://localhost:8080/',
|
'base_url' => 'http://localhost:8080/',
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
} else {
|
} else {
|
||||||
$container->loadFromExtension('framework', [
|
$container->loadFromExtension('framework', [
|
||||||
'assets' => [
|
'assets' => [
|
||||||
|
|||||||
@ -37,7 +37,7 @@ class Version20170719231144 extends WallabagMigration
|
|||||||
WHERE LOWER(label) = :label
|
WHERE LOWER(label) = :label
|
||||||
ORDER BY id ASC',
|
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', [
|
$this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
|
||||||
'origin_url' => null,
|
'origin_url' => null,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$this->assertSame(200, $this->client->getResponse()->getStatusCode());
|
$this->assertSame(200, $this->client->getResponse()->getStatusCode());
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user