|
@@ -4,7 +4,7 @@ namespace Mpociot\ApiDoc;
|
|
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Mpociot\ApiDoc\Commands\GenerateDocumentation;
|
|
use Mpociot\ApiDoc\Commands\GenerateDocumentation;
|
|
-use Mpociot\ApiDoc\Commands\RebuildDocumentation;
|
|
|
|
|
|
+use Mpociot\ApiDoc\Commands\UpdateDocumentation;
|
|
use Mpociot\ApiDoc\Matching\RouteMatcher;
|
|
use Mpociot\ApiDoc\Matching\RouteMatcher;
|
|
use Mpociot\ApiDoc\Matching\RouteMatcherInterface;
|
|
use Mpociot\ApiDoc\Matching\RouteMatcherInterface;
|
|
|
|
|
|
@@ -34,7 +34,7 @@ class ApiDocGeneratorServiceProvider extends ServiceProvider
|
|
if ($this->app->runningInConsole()) {
|
|
if ($this->app->runningInConsole()) {
|
|
$this->commands([
|
|
$this->commands([
|
|
GenerateDocumentation::class,
|
|
GenerateDocumentation::class,
|
|
- RebuildDocumentation::class,
|
|
|
|
|
|
+ UpdateDocumentation::class,
|
|
]);
|
|
]);
|
|
}
|
|
}
|
|
|
|
|