Skip to content

Commit 42710cf

Browse files
author
Ivan Gavryshko
committed
MAGETWO-35133: Search for Commands
- moved Cli class to Console namespace.
1 parent 506d796 commit 42710cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/magento

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
try {
99
require __DIR__ . '/../app/bootstrap.php';
1010
if (PHP_SAPI == 'cli') {
11-
$application = new Magento\Framework\Cli('Magento CLI');
11+
$application = new Magento\Framework\Console\Cli('Magento CLI');
1212
$application->run();
1313
}
1414

lib/internal/Magento/Framework/Cli.php renamed to lib/internal/Magento/Framework/Console/Cli.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
namespace Magento\Framework;
7+
namespace Magento\Framework\Console;
88

99
use Symfony\Component\Console\Application as SymfonyApplication;
1010
use Magento\Framework\App\Bootstrap;

0 commit comments

Comments
 (0)