aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-01-18 15:56:39 +0100
committerGitHub <noreply@github.com>2019-01-18 15:56:39 +0100
commit6bfbf16eeb0004fcac6d2d2507e3d7d8b4dc3c1f (patch)
treeb4f38bf4a01580f5f7218440e7054688d7178e53 /tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
parent8445ad4790ff4f3f9759f9bfa0d503ad5654e30e (diff)
parent1e0d8ad7b728f6fb2cd886526b0fb84ef803e84f (diff)
downloadwallabag-6bfbf16eeb0004fcac6d2d2507e3d7d8b4dc3c1f.tar.gz
wallabag-6bfbf16eeb0004fcac6d2d2507e3d7d8b4dc3c1f.tar.zst
wallabag-6bfbf16eeb0004fcac6d2d2507e3d7d8b4dc3c1f.zip
Merge pull request #3859 from wallabag/phpstan
Enable PHPStan
Diffstat (limited to 'tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php')
-rw-r--r--tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php b/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
index aa176068..e34e13a8 100644
--- a/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
+++ b/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
@@ -6,22 +6,6 @@ use PHPUnit\Framework\TestCase;
6use Wallabag\UserBundle\Entity\User; 6use Wallabag\UserBundle\Entity\User;
7use Wallabag\UserBundle\Mailer\AuthCodeMailer; 7use Wallabag\UserBundle\Mailer\AuthCodeMailer;
8 8
9/**
10 * @see https://www.pmg.com/blog/integration-testing-swift-mailer/
11 */
12final class CountableMemorySpool extends \Swift_MemorySpool implements \Countable
13{
14 public function count()
15 {
16 return \count($this->messages);
17 }
18
19 public function getMessages()
20 {
21 return $this->messages;
22 }
23}
24
25class AuthCodeMailerTest extends TestCase 9class AuthCodeMailerTest extends TestCase
26{ 10{
27 protected $mailer; 11 protected $mailer;