| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 80% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class CookieFactory implements PluginFactory |
||
| 14 | { |
||
| 15 | private ContainerInterface $container; |
||
| 16 | |||
| 17 | public function __construct(ContainerInterface $container) |
||
| 18 | 1 | { |
|
| 19 | $this->container = $container; |
||
| 20 | 1 | } |
|
| 21 | 1 | ||
| 22 | /** |
||
| 23 | * @param array<string, mixed> $config |
||
| 24 | */ |
||
| 25 | public function createPlugin(array $config = []): Plugin |
||
| 40 | } |
||
| 41 | } |
||
| 42 |