Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | protected function configureEmailRecipients() |
||
46 | { |
||
47 | if (app()->environment('production')) { |
||
48 | return; |
||
49 | } |
||
50 | |||
51 | config()->set( |
||
52 | 'mail.recipients', |
||
53 | collect(config('mail.recipients'))->map(function () { |
||
54 | return '[email protected]'; |
||
55 | }) |
||
56 | ); |
||
57 | } |
||
58 | } |
||
59 |