| 1 | <?php |
||
| 12 | final class YamlProvider implements TenantProvider |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $resource; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param null|string $resource The filename of the YAML containing the tenants |
||
| 21 | */ |
||
| 22 | public function __construct($resource = null) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param null|string $resource The filename of the YAML containing the tenants |
||
| 29 | */ |
||
| 30 | public function setResource($resource) { |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritDoc |
||
| 36 | */ |
||
| 37 | public function loadTenants() { |
||
| 53 | } |
||
| 54 |