mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 16:54:05 +00:00
Revert unwanted if-else simplification
This commit is contained in:
parent
ce30f3c189
commit
fabc09a16b
2 changed files with 13 additions and 17 deletions
|
|
@ -48,18 +48,16 @@ trait ParallelCommand
|
||||||
|
|
||||||
if ($pid === -1) {
|
if ($pid === -1) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
} elseif ($pid) {
|
||||||
|
|
||||||
if ($pid) {
|
|
||||||
// Parent
|
// Parent
|
||||||
return $pid;
|
return $pid;
|
||||||
}
|
} else {
|
||||||
|
|
||||||
// Child
|
// Child
|
||||||
DB::reconnect();
|
DB::reconnect();
|
||||||
|
|
||||||
exit($this->childHandle(...$args) ? 0 : 1);
|
exit($this->childHandle(...$args) ? 0 : 1);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected function sysctlGetLogicalCoreCount(bool $darwin): int
|
protected function sysctlGetLogicalCoreCount(bool $darwin): int
|
||||||
{
|
{
|
||||||
|
|
@ -72,9 +70,7 @@ trait ParallelCommand
|
||||||
// perflevel0 refers to P-cores on M-series, and the entire CPU on Intel Macs
|
// 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) {
|
if ($darwin && $ffi->sysctlbyname('hw.perflevel0.logicalcpu', FFI::addr($cores), FFI::addr($size), null, 0) === 0) {
|
||||||
return $cores->cdata;
|
return $cores->cdata;
|
||||||
}
|
} elseif ($darwin) {
|
||||||
|
|
||||||
if ($darwin) {
|
|
||||||
// Reset the size in case the pointer got written to (likely shouldn't happen)
|
// Reset the size in case the pointer got written to (likely shouldn't happen)
|
||||||
$size->cdata = FFI::sizeof($cores);
|
$size->cdata = FFI::sizeof($cores);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,12 +17,12 @@ abstract class QueueableListener implements ShouldQueue
|
||||||
{
|
{
|
||||||
if (static::$shouldQueue) {
|
if (static::$shouldQueue) {
|
||||||
return true;
|
return true;
|
||||||
}
|
} else {
|
||||||
|
|
||||||
// The listener is not queued so we manually
|
// The listener is not queued so we manually
|
||||||
// pass the event to the handle() method.
|
// pass the event to the handle() method.
|
||||||
$this->handle($event);
|
$this->handle($event);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue