@@ -97,13 +97,13 @@ |
||
| 97 | 97 | if ($this->first_name . $this->last_name . $this->middle_name) { |
| 98 | 98 | $name = ''; |
| 99 | 99 | if ($this->first_name) { |
| 100 | - $name.=$this->first_name; |
|
| 100 | + $name .= $this->first_name; |
|
| 101 | 101 | } |
| 102 | 102 | if ($this->middle_name) { |
| 103 | - $name.=($name ? ' ' : '') . $this->middle_name; |
|
| 103 | + $name .= ($name ? ' ' : '') . $this->middle_name; |
|
| 104 | 104 | } |
| 105 | 105 | if ($this->last_name) { |
| 106 | - $name.=($name ? ' ' : '') . $this->last_name; |
|
| 106 | + $name .= ($name ? ' ' : '') . $this->last_name; |
|
| 107 | 107 | } |
| 108 | 108 | return $name; |
| 109 | 109 | } else { |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | 'role_id' => ['type' => 'select', 'source' => 'relation', 'relation' => 'role'], |
| 38 | 38 | 'admin_text' => ['type' => 'html'], |
| 39 | 39 | 'activation' => ['type' => 'text'], |
| 40 | - 'blocked' => ['type' => 'bool',], |
|
| 40 | + 'blocked' => ['type' => 'bool', ], |
|
| 41 | 41 | 'date_last_active' => ['type' => 'dateTime'], |
| 42 | 42 | 'date_create' => ['type' => 'dateTime'] |
| 43 | 43 | ]; |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | ] |
| 101 | 101 | ], |
| 102 | 102 | 'map' => [ |
| 103 | - ['login', 'mail',], |
|
| 103 | + ['login', 'mail', ], |
|
| 104 | 104 | ['group_id', 'role_id'], |
| 105 | 105 | ['userSearch', 'blocked'], |
| 106 | 106 | ['pass'], |