1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 03:54:04 +00:00

Simplify if-else branches

This commit is contained in:
Mark 2024-12-29 09:16:55 +01:00
parent 44d6509691
commit 374c704607
No known key found for this signature in database
GPG key ID: 79CFF7869BD39873
4 changed files with 24 additions and 20 deletions

View file

@ -48,15 +48,17 @@ trait ParallelCommand
if ($pid === -1) {
return -1;
} elseif ($pid) {
}
if ($pid) {
// Parent
return $pid;
} else {
// Child
DB::reconnect();
exit($this->childHandle(...$args) ? 0 : 1);
}
// Child
DB::reconnect();
exit($this->childHandle(...$args) ? 0 : 1);
}
protected function sysctlGetLogicalCoreCount(bool $darwin): int
@ -70,7 +72,9 @@ trait ParallelCommand
// perflevel0 refers to P-cores on M-series, and the entire CPU on Intel Macs
if ($darwin && $ffi->sysctlbyname('hw.perflevel0.logicalcpu', FFI::addr($cores), FFI::addr($size), null, 0) === 0) {
return $cores->cdata;
} else if ($darwin) {
}
if ($darwin) {
// Reset the size in case the pointer got written to (likely shouldn't happen)
$size->cdata = FFI::sizeof($cores);
}

View file

@ -88,12 +88,12 @@ class TenantAssetController implements HasMiddleware
if (app()->runningUnitTests()) {
// Makes testing the cause of the failure in validatePath() easier
throw new Exception($exceptionMessage);
} else {
// We always use 404 to avoid leaking information about the cause of the error
// e.g. when someone is trying to access a nonexistent file outside of the allowed
// root folder, we don't want to let the user know whether such a file exists or not.
abort(404);
}
// We always use 404 to avoid leaking information about the cause of the error
// e.g. when someone is trying to access a nonexistent file outside of the allowed
// root folder, we don't want to let the user know whether such a file exists or not.
abort(404);
}
}
}

View file

@ -17,12 +17,12 @@ abstract class QueueableListener implements ShouldQueue
{
if (static::$shouldQueue) {
return true;
} else {
// The listener is not queued so we manually
// pass the event to the handle() method.
$this->handle($event);
return false;
}
// The listener is not queued so we manually
// pass the event to the handle() method.
$this->handle($event);
return false;
}
}

View file

@ -43,9 +43,9 @@ class InitializeTenancyByPath extends IdentificationMiddleware
$next,
$route
);
} else {
throw new RouteIsMissingTenantParameterException;
}
throw new RouteIsMissingTenantParameterException;
}
/**