mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-17 15:18:05 +00:00
Code cleanup that (hopefully) matches style CI
This commit is contained in:
@@ -147,10 +147,10 @@ class PreferenceController extends Controller
|
||||
$newValue = explode(',', $data['data']);
|
||||
break;
|
||||
case 'listPageSize':
|
||||
$newValue = (int)$data['data'];
|
||||
$newValue = (int) $data['data'];
|
||||
break;
|
||||
case 'customFiscalYear':
|
||||
$newValue = 1 === (int)$data['data'];
|
||||
$newValue = 1 === (int) $data['data'];
|
||||
break;
|
||||
}
|
||||
$result = app('preferences')->set($preference->name, $newValue);
|
||||
|
||||
Reference in New Issue
Block a user