| Total Complexity | 2 | 
| Total Lines | 26 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 12 | class SpotSubmitted extends Mailable  | 
            ||
| 13 | { | 
            ||
| 14 | use Queueable, SerializesModels;  | 
            ||
| 
                                                                                                    
                        
                         | 
                |||
| 15 | public $spotSubmitted;  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * Create a new message instance.  | 
            ||
| 19 | *  | 
            ||
| 20 | * @return void  | 
            ||
| 21 | */  | 
            ||
| 22 | public function __construct(Spot $spotSubmitted)  | 
            ||
| 23 |     { | 
            ||
| 24 | $this->spotSubmitted = $spotSubmitted;  | 
            ||
| 25 | }  | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 | * Build the message.  | 
            ||
| 29 | *  | 
            ||
| 30 | * @return $this  | 
            ||
| 31 | */  | 
            ||
| 32 | public function build()  | 
            ||
| 38 | }  | 
            ||
| 39 | }  | 
            ||
| 40 |