| 1 | <?php |
||
| 19 | class TenantFactory implements TenantFactoryInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $className; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * TenantFactory constructor. |
||
| 28 | * |
||
| 29 | * @param string $className |
||
| 30 | */ |
||
| 31 | public function __construct($className) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function create() |
||
| 43 | } |
||
| 44 |