| 1 | <?php |
||
| 14 | class AuthenticationFactory implements FactoryInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | private $config; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * AuthenticationFactory constructor. |
||
| 23 | * |
||
| 24 | * @param array $config |
||
| 25 | */ |
||
| 26 | 17 | public function __construct(array $config) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritdoc |
||
| 36 | */ |
||
| 37 | 16 | public function build() |
|
| 56 | } |
||
| 57 |