Fix styling

This commit is contained in:
andrasbacsai
2024-06-17 12:22:17 +00:00
committed by github-actions[bot]
parent 1d0a1ab16a
commit dc4916dc19
4 changed files with 13 additions and 3 deletions

View File

@@ -37,9 +37,9 @@ class PullSentinelImageJob implements ShouldBeEncrypted, ShouldQueue
try {
$version = get_latest_sentinel_version();
if (isDev()) {
$version = "0.0.5";
$version = '0.0.5';
}
if (!$version) {
if (! $version) {
ray('Failed to get latest Sentinel version');
return;
@@ -55,7 +55,7 @@ class PullSentinelImageJob implements ShouldBeEncrypted, ShouldQueue
}
ray('Sentinel image is up to date');
} catch (\Throwable $e) {
send_internal_notification('PullSentinelImageJob failed with: ' . $e->getMessage());
send_internal_notification('PullSentinelImageJob failed with: '.$e->getMessage());
ray($e->getMessage());
throw $e;
}