Skip to content
This repository was archived by the owner on Jan 17, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Generator/ApiMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

namespace Arrilot\Api\Generator;

use Illuminate\Console\AppNamespaceDetectorTrait;
use Illuminate\Console\DetectsApplicationNamespace;
use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;
use Symfony\Component\Console\Input\InputArgument;

class ApiMakeCommand extends Command
{
use AppNamespaceDetectorTrait;
use DetectsApplicationNamespace;

/**
* The filesystem instance.
Expand Down Expand Up @@ -64,7 +64,7 @@ public function __construct(Filesystem $files)
*
* @return void
*/
public function fire()
public function handle()
{
$this->prepareVariablesForStubs($this->argument('name'));

Expand Down