Skip to content

Commit 5efd035

Browse files
committed
Wording
1 parent 7c13418 commit 5efd035

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

app/system/Bakery/Command/RouteListCommand.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
use Symfony\Component\Console\Input\InputOption;
1414
use UserFrosting\System\Bakery\BaseCommand;
1515
use Slim\App;
16-
use Slim\Container;
1716

1817
/**
1918
* Generate a list of a projects routes.
@@ -47,7 +46,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
4746
$this->app = new App($this->ci);
4847
$app = $this->app;
4948

50-
$this->io->title("Generate routes");
49+
$this->io->title("Registered Routes");
5150
$routePaths = array_reverse($this->ci->locator->findResources('routes://', true, true));
5251
$routeCount=0;
5352
foreach ($routePaths as $path) {
@@ -66,6 +65,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
6665
$this->io->writeln($m.' '.$p);
6766
}
6867

69-
$this->io->success("Routes generated from {$routeCount} files!");
68+
$this->io->success("Route list generated from {$routeCount} files!");
7069
}
7170
}

0 commit comments

Comments
 (0)