Skip to content

Commit

Permalink
Rename rebuild command class
Browse files Browse the repository at this point in the history
  • Loading branch information
shalvah committed Apr 28, 2019
1 parent 72b5f54 commit 2b12c33
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ApiDocGeneratorServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Mpociot\ApiDoc;

use Illuminate\Support\ServiceProvider;
use Mpociot\ApiDoc\Commands\UpdateDocumentation;
use Mpociot\ApiDoc\Commands\RebuildDocumentation;
use Mpociot\ApiDoc\Commands\GenerateDocumentation;

class ApiDocGeneratorServiceProvider extends ServiceProvider
Expand All @@ -30,7 +30,7 @@ public function boot()
if ($this->app->runningInConsole()) {
$this->commands([
GenerateDocumentation::class,
UpdateDocumentation::class,
RebuildDocumentation::class,
]);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Console\Command;
use Mpociot\Documentarian\Documentarian;

class UpdateDocumentation extends Command
class RebuildDocumentation extends Command
{
/**
* The name and signature of the console command.
Expand Down

0 comments on commit 2b12c33

Please sign in to comment.