06.10.2016 Views

laravel-5

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Artisan Console 256<br />

1 /**<br />

2 * Execute the console command.<br />

3 *<br />

4 * @return mixed<br />

5 */<br />

6 public function handle()<br />

7 {<br />

8 $this->call('email:send', [<br />

9 'user' => 1, '--queue' => 'default'<br />

10 ]);<br />

11<br />

12 //<br />

13 }<br />

If you would like to call another console command and suppress all of its output, you may use the<br />

callSilent method. The callSilent method has the same signature as the call method:<br />

1 $this->callSilent('email:send', [<br />

2 'user' => 1, '--queue' => 'default'<br />

3 ]);

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!