Skip to content

Commit 1e51d60

Browse files
authored
Updated less verbose method naming
1 parent 2bc8cd7 commit 1e51d60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Core/Manager/CommandExpirationManager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function addCommand(DynamicCommand $command): void
3434
public function cleanupCommands(): void
3535
{
3636
foreach ($this->commandInstances as $key => $command) {
37-
if ($command->isCommandExpired()) {
37+
if ($command->isExpired()) {
3838
debug("Begin to free expired instance of command ['" . $command::class . "']");
3939
unset($this->commandInstances[$key]);
4040
unset($command);

0 commit comments

Comments
 (0)