Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
35 | 1 | protected function fieldIsEmail($field) |
|
36 | 1 | { |
|
37 | $possibleColumnNames = array("email", "mail", "courrierelectronique", "ecourrier", "mailaddresse", "mailaddresse", "mailadress", "mailadresse"); |
||
38 | $res = false; |
||
39 | 1 | ||
40 | 1 | if (in_array($field, $possibleColumnNames)) { |
|
41 | $res = true; |
||
42 | } |
||
43 | return $res; |
||
44 | } |
||
54 |