Skip to content

Commit c6b6941

Browse files
authored
Remove closure-command component (#5933)
Co-authored-by: Deeka Wong <8337659+huangdijia@users.noreply.github.com>
1 parent 04157fb commit c6b6941

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Listener/RegisterCommandListener.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ public function listen(): array
4141
public function process(object $event): void
4242
{
4343
if (! $this->container instanceof ContainerPlusInterface) {
44-
$this->logger->error(sprintf('[closure-command] Commands registered failed, because the container cannot implements %s', ContainerPlusInterface::class));
44+
$this->logger->error(sprintf('[command] Commands registered failed, because the container cannot implements %s', ContainerPlusInterface::class));
4545
return;
4646
}
4747

4848
$this->registerClosureCommands();
4949
$this->registerAnnotationCommands();
5050

51-
$this->logger->debug(sprintf('[closure-command] Commands registered by %s', self::class));
51+
$this->logger->debug(sprintf('[command] Commands registered by %s', self::class));
5252
}
5353

5454
private function registerClosureCommands(): void

0 commit comments

Comments
 (0)