Skip to content

Commit

Permalink
Revert behavior fixing for PackageProxyContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzap committed May 24, 2024
1 parent 0331d1e commit b7a7fe4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Container/PackageProxyContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ private function tryContainer(): bool

/** TODO: We need a better way to deal with status checking besides equality */
if (
$this->package->statusIs(Package::STATUS_INITIALIZED)
|| $this->package->statusIs(Package::STATUS_BOOTING)
|| $this->package->statusIs(Package::STATUS_READY)
$this->package->statusIs(Package::STATUS_READY)
|| $this->package->statusIs(Package::STATUS_BOOTED)
) {
$this->container = $this->package->container();
Expand Down

0 comments on commit b7a7fe4

Please sign in to comment.