TYPO3  7.6
NullTransport.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of SwiftMailer.
5  * (c) 2009 Fabien Potencier <fabien.potencier@gmail.com>
6  *
7  * For the full copyright and license information, please view the LICENSE
8  * file that was distributed with this source code.
9  */
10 
17 {
21  public function __construct()
22  {
23  call_user_func_array(
24  array($this, 'Swift_Transport_NullTransport::__construct'),
26  ->createDependenciesFor('transport.null')
27  );
28  }
29 
35  public static function newInstance()
36  {
37  return new self();
38  }
39 }