for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Da\Mailer\Transport;
use Da\Mailer\Transport\TransportInterface;
abstract class AbstractTransportFactory
{
/**
* @var array the options to configure the transport instance to create.
*/
protected $options;
* AbstractTransportFactory constructor.
*
* @param array $options
protected function __construct(array $options)
$this->options = $options;
}
* @return TransportInterface
abstract public function create();