2016-06-24 13 views
0
[ErrorException]                                     

/dingo/api/src/Console/Command/Docs.php
ライン95上の と定義されてディンゴ青写真青写真の引数4ミッシングLaravel ::生成()

例外トレース:これはDingo APIのmasterブランチで解決されてい

() at /Applications/XAMPP/xamppfiles/htdocs/api/vendor/dingo/blueprint/src/Blueprint.php:83 
Illuminate\Foundation\Bootstrap\HandleExceptions->handleError() at /Applications/XAMPP/xamppfiles/htdocs/api/vendor/dingo/blueprint/src/Blueprint.php:83 
Dingo\Blueprint\Blueprint->generate() at /Applications/XAMPP/xamppfiles/htdocs/api/vendor/dingo/api/src/Console/Command/Docs.php:95 
Dingo\Api\Console\Command\Docs->handle() at n/a:n/a 
call_user_func_array() at  /Applications/XAMPP/xamppfiles/htdocs/api/vendor/laravel/framework/src/Illuminate/Container/Container.php:507 
Illuminate\Container\Container->call() at /Applications/XAMPP/xamppfiles/htdocs/api/vendor/laravel/framework/src/Illuminate/Console/Command.php:150 
Illuminate\Console\Command->execute() at /Applications/XAMPP/xamppfiles/htdocs/api/vendor/symfony/console/Command/Command.php:256 
Symfony\Component\Console\Command\Command->run() at /Applications/XAMPP/xamppfiles/htdocs/api/vendor/laravel/framework/src/Illuminate/Console/Command.php:136 
Illuminate\Console\Command->run() at /Applications/XAMPP/xamppfiles/htdocs/api/vendor/symfony/console/Application.php:841 
Symfony\Component\Console\Application->doRunCommand() at /Applications/XAMPP/xamppfiles/htdocs/api/vendor/symfony/console/Application.php:189 
Symfony\Component\Console\Application->doRun() at /Applications/XAMPP/xamppfiles/htdocs/api/vendor/symfony/console/Application.php:120 
Symfony\Component\Console\Application->run() at /Applications/XAMPP/xamppfiles/htdocs/api/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:107 
Illuminate\Foundation\Console\Kernel->handle() at /Applications/XAMPP/xamppfiles/htdocs/api/artisan:36 

答えて

0

、にこれを引っ張ってみてくださいあなたの開発。

IncludePathは、Dingo \ Blueprint \ Blueprint :: generate()関数呼び出しの4番目のパラメータとして含まれていませんでした。マスターブランチの更新ファイルにはlinkがあります。

0

ケビンの解決策は私のためには機能しません。 (laravel 5.1)

Docs.phpの置き換え後、私はBlueprintクラスでエラーが発生しました。

so:

ケビンのソリューションの代わりに。私は1秒で動作する簡単なものを見つけました。

:)

修正ファイル: ベンダー/ディンゴ/ API/srcに次のコードで/コンソール/コマンド/ Docs.php

$contents = $this->blueprint->generate($this->getControllers(), $this->argument('name'), $this->argument('version')); 

$contents = $this->blueprint->generate($this->getControllers(), $this->argument('name'), $this->argument('version'),''); 

だけによって関数呼び出しの最後に第4引数の場所である,''を追加します。

関連する問題