Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class MonthlyReport extends Mailable implements ShouldQueue |
||
13 | { |
||
14 | use Queueable, SerializesModels; |
||
|
|||
15 | |||
16 | public string $monthName; |
||
17 | |||
18 | public int $year; |
||
19 | |||
20 | public Carbon $start; |
||
21 | |||
22 | public Carbon $end; |
||
23 | |||
24 | public $teachers; |
||
25 | |||
26 | public function __construct() |
||
36 | } |
||
37 | |||
38 | public function build() |
||
43 |