| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function handle() |
||
| 17 | { |
||
| 18 | $this->guardAgainstInvalidArguments(); |
||
| 19 | |||
| 20 | $mailable = app(MailableFactory::class)->getInstance( |
||
| 21 | $this->argument('mailableClass'), |
||
| 22 | $this->argument('recipient'), |
||
| 23 | $this->getValues() |
||
| 24 | ); |
||
| 25 | |||
| 26 | Mail::send($mailable); |
||
| 27 | |||
| 28 | $this->comment('Mail sent!'); |
||
| 29 | } |
||
| 30 | |||
| 47 |