| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class WebConfigTest extends ConfigTest |
||
| 8 | { |
||
| 9 | public function configProvider(): array |
||
| 10 | { |
||
| 11 | return [ |
||
| 12 | [ |
||
| 13 | \Environment\Serializer\SerializerInterface::class, |
||
| 14 | \Environment\Serializer\PhpSerializer::class, |
||
| 15 | ], |
||
| 16 | [ |
||
| 17 | 'params', |
||
| 18 | fn(array $params) => $this->assertSame('default', $params['env_parameter']), |
||
| 19 | ], |
||
| 20 | ]; |
||
| 21 | } |
||
| 22 | |||
| 23 | protected function getDefaultConfigName(): string |
||
| 26 | } |
||
| 27 | } |
||
| 28 |