Файловый менеджер - Редактировать - /home/clickysoft/public_html/charliapp-v2.clickysoft.net/vendor/darkaonline/l5-swagger/src/Console/GenerateDocsCommand.php
Назад
<?php namespace L5Swagger\Console; use Illuminate\Console\Command; use L5Swagger\Exceptions\L5SwaggerException; use L5Swagger\GeneratorFactory; class GenerateDocsCommand extends Command { public function __construct() { parent::__construct(); } /** * The name and signature of the console command. * * @var string */ protected $signature = 'l5-swagger:generate {documentation?} {--all}'; /** * The console command description. * * @var string */ protected $description = 'Regenerate docs'; /** * Execute the console command. * * @param GeneratorFactory $generatorFactory * @return void * * @throws L5SwaggerException */ public function handle(GeneratorFactory $generatorFactory) { $all = $this->option('all'); if ($all) { $documentations = array_keys(config('l5-swagger.documentations', [])); foreach ($documentations as $documentation) { $this->generateDocumentation($generatorFactory, $documentation); } return; } $documentation = $this->argument('documentation'); if (! $documentation) { $documentation = config('l5-swagger.default'); } $this->generateDocumentation($generatorFactory, $documentation); } /** * @param GeneratorFactory $generatorFactory * @param string $documentation * * @throws L5SwaggerException */ private function generateDocumentation(GeneratorFactory $generatorFactory, string $documentation) { $this->info('Regenerating docs '.$documentation); $generator = $generatorFactory->make($documentation); $generator->generateDocs(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка