Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Commit 03e0e0c

Browse files
authored
Merge pull request #25 from lucid-architecture/5.5
5.5
2 parents 7b7e1f7 + 17ee84b commit 03e0e0c

23 files changed

+29
-29
lines changed

src/Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function execute(InputInterface $input, OutputInterface $output)
6060
$this->input = $input;
6161
$this->output = $output;
6262

63-
return (int) $this->fire();
63+
return (int) $this->handle();
6464
}
6565

6666
/**

src/Commands/ChangeSourceNamespaceCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function __construct()
6969
/**
7070
* Execute the console command.
7171
*/
72-
public function fire()
72+
public function handle()
7373
{
7474
try {
7575
$this->setAppDirectoryNamespace();

src/Commands/ControllerMakeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class ControllerMakeCommand extends SymfonyCommand
5454
*
5555
* @return bool|null
5656
*/
57-
public function fire()
57+
public function handle()
5858
{
5959
$generator = new ControllerGenerator();
6060

src/Commands/FeatureDeleteCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class FeatureDeleteCommand extends SymfonyCommand
5353
*
5454
* @return bool|null
5555
*/
56-
public function fire()
56+
public function handle()
5757
{
5858
try {
5959
$service = Str::service($this->argument('service'));

src/Commands/FeatureDescribeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class FeatureDescribeCommand extends Command
4343
*
4444
* @return bool|null
4545
*/
46-
public function fire()
46+
public function handle()
4747
{
4848
if ($feature = $this->findFeature($this->argument('feature'))) {
4949
$parser = new Parser();

src/Commands/FeatureMakeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class FeatureMakeCommand extends SymfonyCommand
5454
*
5555
* @return bool|null
5656
*/
57-
public function fire()
57+
public function handle()
5858
{
5959
try {
6060
$service = studly_case($this->argument('service'));

src/Commands/FeaturesListCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class FeaturesListCommand extends SymfonyCommand
4343
*
4444
* @return bool|null
4545
*/
46-
public function fire()
46+
public function handle()
4747
{
4848
foreach ($this->listFeatures($this->argument('service')) as $service => $features) {
4949
$this->comment("\n$service\n");

src/Commands/JobDeleteCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class JobDeleteCommand extends SymfonyCommand
5353
*
5454
* @return bool|null
5555
*/
56-
public function fire()
56+
public function handle()
5757
{
5858
try {
5959
$domain = studly_case($this->argument('domain'));

src/Commands/JobMakeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class JobMakeCommand extends SymfonyCommand
5555
*
5656
* @return bool|null
5757
*/
58-
public function fire()
58+
public function handle()
5959
{
6060
$generator = new JobGenerator();
6161

src/Commands/ModelDeleteCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class ModelDeleteCommand extends SymfonyCommand
4949
*
5050
* @return bool|null
5151
*/
52-
public function fire()
52+
public function handle()
5353
{
5454
try {
5555
$model = $this->parseModelName($this->argument('model'));
@@ -98,4 +98,4 @@ public function parseModelName($name)
9898
{
9999
return Str::model($name);
100100
}
101-
}
101+
}

0 commit comments

Comments
 (0)