| @@ -4,5 +4,8 @@ | ||
| 4 | 4 | |
| 5 | 5 | interface OpenInIdeInterface | 
| 6 | 6 |  { | 
| 7 | + /** | |
| 8 | + * @return void | |
| 9 | + */ | |
| 7 | 10 | public function open(); | 
| 8 | 11 | } | 
| @@ -4,5 +4,8 @@ | ||
| 4 | 4 | |
| 5 | 5 | interface ServiceInterface | 
| 6 | 6 |  { | 
| 7 | + /** | |
| 8 | + * @return void | |
| 9 | + */ | |
| 7 | 10 | public function call(); | 
| 8 | 11 | } | 
| @@ -71,7 +71,7 @@ | ||
| 71 | 71 | } | 
| 72 | 72 | |
| 73 | 73 | /** | 
| 74 | - * @return mixed | |
| 74 | + * @return string | |
| 75 | 75 | */ | 
| 76 | 76 | public function getDefault() | 
| 77 | 77 |      { | 
| @@ -37,7 +37,6 @@ | ||
| 37 | 37 | /** | 
| 38 | 38 | * Build the class with the given name. | 
| 39 | 39 | * | 
| 40 | - * @param string $name | |
| 41 | 40 | * | 
| 42 | 41 | * @return string | 
| 43 | 42 | */ | 
| @@ -2,8 +2,6 @@ | ||
| 2 | 2 | |
| 3 | 3 | namespace Webfactor\Laravel\Generators\Services; | 
| 4 | 4 | |
| 5 | -use Illuminate\Filesystem\Filesystem; | |
| 6 | -use Webfactor\Laravel\Generators\Commands\MakeEntity; | |
| 7 | 5 | use Webfactor\Laravel\Generators\Contracts\ServiceAbstract; | 
| 8 | 6 | use Webfactor\Laravel\Generators\Contracts\ServiceInterface; | 
| 9 | 7 | |