Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function build() |
||
37 | { |
||
38 | $course = $this->exchange->course(); |
||
39 | $fromStudent = $this->exchange->fromStudent(); |
||
40 | $toStudent = $this->exchange->toStudent(); |
||
41 | $fromShift = $this->exchange->fromShift(); |
||
42 | $toShift = $this->exchange->toShift(); |
||
43 | |||
44 | return $this->markdown('emails.exchanges.declined', |
||
45 | compact('course', 'fromStudent', 'toStudent', 'fromShift', 'toShift')); |
||
46 | } |
||
48 |