Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | protected function setUp() : void |
||
18 | { |
||
19 | if( !interface_exists( 'Symfony\Component\Mailer\MailerInterface' ) ) { |
||
20 | $this->markTestSkipped( 'Class Symfony\Component\Mailer\MailerInterface not found' ); |
||
21 | } |
||
22 | |||
23 | $this->mock = $this->getMockBuilder( 'Symfony\Component\Mailer\MailerInterface' ) |
||
24 | ->disableOriginalConstructor() |
||
25 | ->getMock(); |
||
26 | } |
||
35 |