Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
44 | public static function break($fullName) |
||
45 | { |
||
46 | $fullName = self::toDatabase($fullName); |
||
47 | $nomes = explode(" ", trim($fullName)); |
||
48 | return [ |
||
49 | 'first' => $nomes[0], |
||
50 | 'names' => $nomes, |
||
51 | 'full' => $fullName, |
||
52 | 'last' => $nomes[count($nomes)-1], |
||
53 | 'sobrenomes' => count($nomes)-1 |
||
54 | ]; |
||
73 |