mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-17 07:08:19 +00:00
Code cleanup that (hopefully) matches style CI
This commit is contained in:
@@ -54,8 +54,8 @@ class DecryptDatabase extends Command
|
||||
/**
|
||||
* Execute the console command.
|
||||
*
|
||||
* @return int
|
||||
* @throws FireflyException
|
||||
* @return int
|
||||
*/
|
||||
public function handle(): int
|
||||
{
|
||||
@@ -96,7 +96,7 @@ class DecryptDatabase extends Command
|
||||
Log::debug(sprintf('Decrypted field "%s" "%s" to "%s" in table "%s" (row #%d)', $field, $original, print_r($value, true), $table, $id));
|
||||
|
||||
/** @var Preference $object */
|
||||
$object = Preference::find((int)$id);
|
||||
$object = Preference::find((int) $id);
|
||||
if (null !== $object) {
|
||||
$object->data = $value;
|
||||
$object->save();
|
||||
@@ -131,7 +131,7 @@ class DecryptDatabase extends Command
|
||||
$configName = sprintf('is_decrypted_%s', $table);
|
||||
$configVar = app('fireflyconfig')->get($configName, false);
|
||||
if (null !== $configVar) {
|
||||
return (bool)$configVar->data;
|
||||
return (bool) $configVar->data;
|
||||
}
|
||||
|
||||
return false;
|
||||
@@ -142,8 +142,9 @@ class DecryptDatabase extends Command
|
||||
* Tries to decrypt data. Will only throw an exception when the MAC is invalid.
|
||||
*
|
||||
* @param $value
|
||||
* @return string
|
||||
*
|
||||
* @throws FireflyException
|
||||
* @return string
|
||||
*/
|
||||
private function tryDecrypt($value)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user