From cebb42234cd8a5cb5a777b4b7ef2640fb5a82b90 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nicolas=20L=C5=93uillet?= Date: Tue, 8 Mar 2016 15:22:35 +0100 Subject: [PATCH] Added 'wallabag' in page title --- src/Wallabag/CoreBundle/Resources/views/base.html.twig | 2 +- src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php | 2 +- src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php | 2 +- src/Wallabag/ImportBundle/Tests/Import/WallabagV2ImportTest.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Wallabag/CoreBundle/Resources/views/base.html.twig b/src/Wallabag/CoreBundle/Resources/views/base.html.twig index 4c0d4fee..dacdb9ca 100644 --- a/src/Wallabag/CoreBundle/Resources/views/base.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/base.html.twig @@ -47,7 +47,7 @@ {% endblock %} - {% block title %}{% endblock %} + wallabag - {% block title %}{% endblock %} {% endblock %} diff --git a/src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php b/src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php index bc9e2f42..92712b9d 100644 --- a/src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php +++ b/src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php @@ -351,7 +351,7 @@ class PocketImportTest extends \PHPUnit_Framework_TestCase $this->em ->expects($this->any()) ->method('persist') - ->with($this->callback(function($persistedEntry) { + ->with($this->callback(function ($persistedEntry) { return $persistedEntry->isArchived(); })); diff --git a/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php b/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php index fbcd270d..8ab7e830 100644 --- a/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php +++ b/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php @@ -103,7 +103,7 @@ class WallabagV1ImportTest extends \PHPUnit_Framework_TestCase $this->em ->expects($this->any()) ->method('persist') - ->with($this->callback(function($persistedEntry) { + ->with($this->callback(function ($persistedEntry) { return $persistedEntry->isArchived(); })); diff --git a/src/Wallabag/ImportBundle/Tests/Import/WallabagV2ImportTest.php b/src/Wallabag/ImportBundle/Tests/Import/WallabagV2ImportTest.php index c461168c..2b642d27 100644 --- a/src/Wallabag/ImportBundle/Tests/Import/WallabagV2ImportTest.php +++ b/src/Wallabag/ImportBundle/Tests/Import/WallabagV2ImportTest.php @@ -94,7 +94,7 @@ class WallabagV2ImportTest extends \PHPUnit_Framework_TestCase $this->em ->expects($this->any()) ->method('persist') - ->with($this->callback(function($persistedEntry) { + ->with($this->callback(function ($persistedEntry) { return $persistedEntry->isArchived(); })); -- 2.41.0