mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-19 08:00:19 +00:00
Update some code style
This commit is contained in:
@@ -135,7 +135,8 @@ class Telemetry
|
||||
->where('key', $key)
|
||||
->where('value', $jsonEncoded)
|
||||
->count();
|
||||
} catch (QueryException|Exception $e) {
|
||||
} catch (QueryException $e) {
|
||||
Log::info(sprintf('Could not execute hasEntry() but this is OK: %s', $e->getMessage()));
|
||||
$count = 0;
|
||||
}
|
||||
|
||||
@@ -188,8 +189,8 @@ class Telemetry
|
||||
'value' => $value,
|
||||
]
|
||||
);
|
||||
} catch (QueryException|Exception $e) {
|
||||
// ignore.
|
||||
} catch (QueryException $e) {
|
||||
Log::info(sprintf('Could not execute storeEntry() but this is OK: %s', $e->getMessage()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user