Completed
Push — master ( f7e56f...c1baaf )
by Sean
01:15
created
src/TestMailCommand.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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(
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,10 +4,8 @@
 block discarded – undo
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
Please login to merge, or discard this patch.