| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function setUp() |
||
| 29 | { |
||
| 30 | $this->parser = $this->getMockBuilder(DotenvParser::class) |
||
| 31 | ->setMethods(['parse']) |
||
| 32 | ->getMock(); |
||
| 33 | $this->parser->/** @scrutinizer ignore-call */method('parse')->willReturn(['TEST_FOO' => 'foo']); |
||
| 34 | $this->setter = new EnvVarsSetter($this->parser); |
||
| 35 | } |
||
| 49 |