Conditions | 3 |
Paths | 3 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | protected function email() |
||
19 | { |
||
20 | if (($email = env('ADMIN_EMAIL', null)) != null) return $email; |
||
21 | |||
22 | if (($email = git_user_email()) != null) return $email; |
||
|
|||
23 | |||
24 | return "[email protected]"; |
||
25 | } |
||
26 | } |