| 1 | <?php |
||
| 11 | class AdldapFactory |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var TokenStorage |
||
| 16 | */ |
||
| 17 | private $tokenStorage; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var AdldapService |
||
| 21 | */ |
||
| 22 | private $adldapService; |
||
| 23 | |||
| 24 | public function __construct(TokenStorage $tokenStorage, AdldapService $adldapService) |
||
| 25 | { |
||
| 26 | $this->tokenStorage = $tokenStorage; |
||
| 27 | $this->adldapService = $adldapService; |
||
| 28 | } |
||
| 29 | |||
| 30 | |||
| 31 | public function getAuthenticatedAdLdap() |
||
| 42 | |||
| 43 | } |
||
| 44 |