@@ -148,7 +148,7 @@  | 
                                                    ||
| 148 | 148 |              $this->view->assign('disabled', 'disabled'); | 
                                                        
| 149 | 149 |              $this->view->assign('readonly', 'readonly'); | 
                                                        
| 150 | 150 | |
| 151 | -            $this->view->assign('usage', array_map(function ($value) { | 
                                                        |
| 151 | +            $this->view->assign('usage', array_map(function($value) { | 
                                                        |
| 152 | 152 |                  switch ($value->ref) { | 
                                                        
| 153 | 153 | case 'Account':  | 
                                                        
| 154 | 154 | $value->icon = 'description';  | 
                                                        
@@ -112,7 +112,7 @@  | 
                                                    ||
| 112 | 112 | return;  | 
                                                        
| 113 | 113 | }  | 
                                                        
| 114 | 114 | |
| 115 | - $this->context =& $context['context'];  | 
                                                        |
| 115 | + $this->context = & $context['context'];  | 
                                                        |
| 116 | 116 | }  | 
                                                        
| 117 | 117 | |
| 118 | 118 | /**  | 
                                                        
@@ -62,7 +62,7 @@  | 
                                                    ||
| 62 | 62 | */  | 
                                                        
| 63 | 63 | public static function getArray(array $array): array  | 
                                                        
| 64 | 64 |      { | 
                                                        
| 65 | -        return array_map(function ($value) { | 
                                                        |
| 65 | +        return array_map(function($value) { | 
                                                        |
| 66 | 66 |              if ($value !== null) { | 
                                                        
| 67 | 67 |                  if (is_numeric($value)) { | 
                                                        
| 68 | 68 | return Filter::getInt($value);  | 
                                                        
@@ -60,8 +60,11 @@  | 
                                                    ||
| 60 | 60 | $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir, FilesystemIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST);  | 
                                                        
| 61 | 61 | |
| 62 | 62 |          foreach ($it as $file) { | 
                                                        
| 63 | - if ($file->isDir()) rmdir($file->getPathname());  | 
                                                        |
| 64 | - else unlink($file->getPathname());  | 
                                                        |
| 63 | +            if ($file->isDir()) { | 
                                                        |
| 64 | + rmdir($file->getPathname());  | 
                                                        |
| 65 | +            } else { | 
                                                        |
| 66 | + unlink($file->getPathname());  | 
                                                        |
| 67 | + }  | 
                                                        |
| 65 | 68 | }  | 
                                                        
| 66 | 69 | |
| 67 | 70 | return rmdir($dir);  | 
                                                        
@@ -123,7 +123,7 @@  | 
                                                    ||
| 123 | 123 |          try { | 
                                                        
| 124 | 124 | $this->request = $request;  | 
                                                        
| 125 | 125 | |
| 126 | -            $this->processUpdateMasterPassword(function (CustomFieldData $customFieldData) { | 
                                                        |
| 126 | +            $this->processUpdateMasterPassword(function(CustomFieldData $customFieldData) { | 
                                                        |
| 127 | 127 | return Crypt::decrypt(  | 
                                                        
| 128 | 128 | $customFieldData->getData(),  | 
                                                        
| 129 | 129 | $customFieldData->getKey(),  | 
                                                        
@@ -101,7 +101,7 @@ discard block  | 
                                                    ||
| 101 | 101 | */  | 
                                                        
| 102 | 102 | public function delete($id)  | 
                                                        
| 103 | 103 |      { | 
                                                        
| 104 | -        $this->transactionAware(function () use ($id) { | 
                                                        |
| 104 | +        $this->transactionAware(function() use ($id) { | 
                                                        |
| 105 | 105 | $this->dic->get(CustomFieldService::class)  | 
                                                        
| 106 | 106 | ->deleteCustomFieldDefinitionData($id);  | 
                                                        
| 107 | 107 | |
@@ -122,7 +122,7 @@ discard block  | 
                                                    ||
| 122 | 122 | */  | 
                                                        
| 123 | 123 | public function deleteByIdBatch(array $ids)  | 
                                                        
| 124 | 124 |      { | 
                                                        
| 125 | -        $this->transactionAware(function () use ($ids) { | 
                                                        |
| 125 | +        $this->transactionAware(function() use ($ids) { | 
                                                        |
| 126 | 126 | $this->dic->get(CustomFieldService::class)  | 
                                                        
| 127 | 127 | ->deleteCustomFieldDefinitionDataBatch($ids);  | 
                                                        
| 128 | 128 | |
@@ -152,7 +152,7 @@ discard block  | 
                                                    ||
| 152 | 152 | */  | 
                                                        
| 153 | 153 | public function update(CustomFieldDefinitionData $itemData)  | 
                                                        
| 154 | 154 |      { | 
                                                        
| 155 | -        return $this->transactionAware(function () use ($itemData) { | 
                                                        |
| 155 | +        return $this->transactionAware(function() use ($itemData) { | 
                                                        |
| 156 | 156 | $customFieldDefinitionData = $this->getById($itemData->getId());  | 
                                                        
| 157 | 157 | |
| 158 | 158 | // Delete the data used by the items using the previous definition  | 
                                                        
@@ -86,7 +86,7 @@  | 
                                                    ||
| 86 | 86 | */  | 
                                                        
| 87 | 87 | public function changeMasterPassword(UpdateMasterPassRequest $request)  | 
                                                        
| 88 | 88 |      { | 
                                                        
| 89 | -        $this->transactionAware(function () use ($request) { | 
                                                        |
| 89 | +        $this->transactionAware(function() use ($request) { | 
                                                        |
| 90 | 90 | $this->accountCryptService->updateMasterPassword($request);  | 
                                                        
| 91 | 91 | |
| 92 | 92 | $this->accountCryptService->updateHistoryMasterPassword($request);  | 
                                                        
@@ -262,6 +262,6 @@  | 
                                                    ||
| 262 | 262 |      { | 
                                                        
| 263 | 263 | $this->configData = $this->config->getConfigData();  | 
                                                        
| 264 | 264 | $this->userRepository = $this->dic->get(UserRepository::class);  | 
                                                        
| 265 | - $this->configService = $this->dic->get(ConfigService::class);;  | 
                                                        |
| 265 | + $this->configService = $this->dic->get(ConfigService::class); ;  | 
                                                        |
| 266 | 266 | }  | 
                                                        
| 267 | 267 | }  | 
                                                        
| 268 | 268 | \ No newline at end of file  | 
                                                        
@@ -80,7 +80,7 @@  | 
                                                    ||
| 80 | 80 | ];  | 
                                                        
| 81 | 81 | }  | 
                                                        
| 82 | 82 | |
| 83 | -        array_walk($data['results'], function ($value) use (&$data) { | 
                                                        |
| 83 | +        array_walk($data['results'], function($value) use (&$data) { | 
                                                        |
| 84 | 84 | $data['count'] += count($value['items']);  | 
                                                        
| 85 | 85 | });  | 
                                                        
| 86 | 86 | |