We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bc8cd7 commit 1e51d60Copy full SHA for 1e51d60
Core/Manager/CommandExpirationManager.php
@@ -34,7 +34,7 @@ public function addCommand(DynamicCommand $command): void
34
public function cleanupCommands(): void
35
{
36
foreach ($this->commandInstances as $key => $command) {
37
- if ($command->isCommandExpired()) {
+ if ($command->isExpired()) {
38
debug("Begin to free expired instance of command ['" . $command::class . "']");
39
unset($this->commandInstances[$key]);
40
unset($command);
0 commit comments