Conditions | 1 |
Paths | 1 |
Total Lines | 22 |
Code Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function save(array $fieldNames = []) |
||
33 | { |
||
34 | $fieldNames = array_intersect($fieldNames, [ |
||
35 | 'first_name', |
||
36 | 'last_name', |
||
37 | 'company_name', |
||
38 | 'email', |
||
39 | 'phone', |
||
40 | 'mobile', |
||
41 | 'twitter', |
||
42 | 'skype', |
||
43 | 'facebook', |
||
44 | 'linkedin', |
||
45 | 'address', |
||
46 | 'city', |
||
47 | 'country', |
||
48 | 'title', |
||
49 | 'description', |
||
50 | ]); |
||
51 | |||
52 | return parent::save($fieldNames); |
||
53 | } |
||
54 | } |
||
55 |