Skip to content

Commit 346ef77

Browse files
author
Ivan Gavryshko
committed
MAGETWO-35133: Search for Commands
- removed redundand semicolons
1 parent 233a8b6 commit 346ef77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/tools/Magento/Tools/Console/CommandList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function getCommands()
3131

3232
foreach ($this->getCommandsClasses() as $class) {
3333
if (class_exists($class)) {
34-
$command = new $class;;
34+
$command = new $class;
3535
if ($command instanceof Command) {
3636
$commands[] = $command;
3737
}

0 commit comments

Comments
 (0)