@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | /** |
51 | 51 | * Execute the console command. |
52 | 52 | * |
53 | - * @return mixed |
|
53 | + * @return integer|null |
|
54 | 54 | */ |
55 | 55 | public function handle() |
56 | 56 | { |
@@ -90,6 +90,9 @@ discard block |
||
90 | 90 | $this->setStack(); |
91 | 91 | } |
92 | 92 | |
93 | + /** |
|
94 | + * @param string $key |
|
95 | + */ |
|
93 | 96 | protected function getPresetValue($key, $default = null) |
94 | 97 | { |
95 | 98 | return $this->config->get( |
@@ -4,10 +4,8 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Console\Command; |
6 | 6 | use Illuminate\Support\Facades\Mail; |
7 | -use Illuminate\Contracts\Mail\Mailable; |
|
8 | 7 | use Illuminate\Support\Facades\Validator; |
9 | 8 | use Resohead\LaravelTestMail\TestMailable; |
10 | -use Resohead\LaravelTestMail\SendTestEmailJob; |
|
11 | 9 | use \Illuminate\Contracts\Config\Repository as Config; |
12 | 10 | |
13 | 11 | class TestMailCommand extends Command |