We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php | ||
| 11 | class CampaignPublished extends Mailable implements ShouldQueue | ||
| 12 | { | ||
| 13 | use Queueable, SerializesModels; | ||
| 14 | |||
| 15 | protected $campaign; | ||
| 16 | /** | ||
| 17 | * Create a new message instance. | ||
| 18 | * | ||
| 19 | */ | ||
| 20 | public function __construct(Campaign $campaign) | ||
| 24 | |||
| 25 | /** | ||
| 26 | * Build the message. | ||
| 27 | * | ||
| 28 | * @return $this | ||
| 29 | */ | ||
| 30 | public function build() | ||
| 42 | } | ||
| 43 |