[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/_test/mock/ -> MailerMock.php (source)

   1  <?php
   2  
   3  namespace dokuwiki\test\mock;
   4  
   5  class MailerMock extends \Mailer
   6  {
   7  
   8      public $mails = [];
   9  
  10      public function send()
  11      {
  12          $this->mails[] = $this->headers;
  13          return true;
  14      }
  15  
  16  }