Skip to content

Commit 49b3c72

Browse files
committed
Resolves incorrect boolean return type in getPid
Reverts inadvertent change in 7421dfb causing the improper type to be returned as noted on #22563
1 parent 8b3fd9d commit 49b3c72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Deploy/Process/Queue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ private function isDeployed(Package $package)
361361
*/
362362
private function getPid(Package $package)
363363
{
364-
return isset($this->processIds[$package->getPath()]) ?? null;
364+
return $this->processIds[$package->getPath()] ?? null;
365365
}
366366

367367
/**

0 commit comments

Comments
 (0)