aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-12-18 14:32:21 +0100
committerGitHub <noreply@github.com>2017-12-18 14:32:21 +0100
commitef5c8a7d01d7b3f0041455503499ab67e2206e0d (patch)
tree66fad00b695ceb24a5a3ee7ef3185c18050f316f /tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
parent01ea7f585504fba74bd138386ca30ca4d26cfe65 (diff)
parentad880894a8dc0af97ee145f76ed10ca99e1ebf5a (diff)
downloadwallabag-ef5c8a7d01d7b3f0041455503499ab67e2206e0d.tar.gz
wallabag-ef5c8a7d01d7b3f0041455503499ab67e2206e0d.tar.zst
wallabag-ef5c8a7d01d7b3f0041455503499ab67e2206e0d.zip
Merge pull request #3515 from wallabag/php-7.2
Add PHP 7.2 compatibility
Diffstat (limited to 'tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php')
-rw-r--r--tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php b/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
index 7381ccf1..f39fa60e 100644
--- a/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
+++ b/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
@@ -2,6 +2,7 @@
2 2
3namespace Tests\Wallabag\UserBundle\Mailer; 3namespace Tests\Wallabag\UserBundle\Mailer;
4 4
5use PHPUnit\Framework\TestCase;
5use Wallabag\UserBundle\Entity\User; 6use Wallabag\UserBundle\Entity\User;
6use Wallabag\UserBundle\Mailer\AuthCodeMailer; 7use Wallabag\UserBundle\Mailer\AuthCodeMailer;
7 8
@@ -21,7 +22,7 @@ final class CountableMemorySpool extends \Swift_MemorySpool implements \Countabl
21 } 22 }
22} 23}
23 24
24class AuthCodeMailerTest extends \PHPUnit_Framework_TestCase 25class AuthCodeMailerTest extends TestCase
25{ 26{
26 protected $mailer; 27 protected $mailer;
27 protected $spool; 28 protected $spool;