mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-19 15:41:09 +00:00
1e0d8ad7b7
- Fix error for level 0 & 1 (level 7 has 699 errors...) - Add `updated_at` to site_credential (so the `timestamps()` method applies correctly)
19 lines
372 B
PHP
19 lines
372 B
PHP
<?php
|
|
|
|
namespace Tests\Wallabag\UserBundle\Mailer;
|
|
|
|
/**
|
|
* @see https://www.pmg.com/blog/integration-testing-swift-mailer/
|
|
*/
|
|
final class CountableMemorySpool extends \Swift_MemorySpool implements \Countable
|
|
{
|
|
public function count()
|
|
{
|
|
return \count($this->messages);
|
|
}
|
|
|
|
public function getMessages()
|
|
{
|
|
return $this->messages;
|
|
}
|
|
}
|