Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function perform() |
||
23 | { |
||
24 | if ($this->app['config']['mail.driver'] === 'array') { |
||
25 | return $this->fail("Mail driver must not be set to 'log' in production"); |
||
26 | } |
||
27 | |||
28 | if ($this->app['config']['mail.pretend']) { |
||
29 | return $this->fail("'mail.pretend' must not be set to 'true' in production"); |
||
30 | } |
||
31 | |||
32 | return $this->ok(); |
||
33 | } |
||
34 | } |
||
35 |