We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
30 | public function build() |
||
31 | { |
||
32 | return $this->markdown('email.campaigns.published') |
||
33 | ->with( |
||
34 | [ |
||
35 | 'CampTitle' => $this->campaign->title, |
||
36 | 'CampOwner' => $this->campaign->owner, |
||
37 | 'CampCreated' => $this->campaign->created_at->format('d-m-Y'), |
||
38 | 'CampExpiration' => $this->campaign->expires->format('d-m-Y') |
||
39 | ] |
||
40 | ); |
||
41 | } |
||
42 | } |
||
43 |