Split Output into Output(Generator) and Transport. Needed for later

switching between different mail transports.
This commit is contained in:
2016-08-04 15:35:50 +02:00
parent d7d6ee890e
commit 320c58be50
6 changed files with 51 additions and 8 deletions
@@ -0,0 +1,10 @@
<?php
namespace Frs\Output\Transport;
interface TransportInterface
{
public function setContent($content);
public function transmit();
}