1 | <?php |
||
8 | class Notification |
||
9 | { |
||
10 | /** @var \Joli\JoliNotif\Notification */ |
||
11 | protected $joliNotification; |
||
12 | |||
13 | public static function create() |
||
21 | |||
22 | protected function __construct(JoliNotification $joliNotification) |
||
26 | |||
27 | public function passingTests() |
||
28 | { |
||
29 | $this->joliNotification->setBody('✅ Tests passed!'); |
||
30 | |||
31 | $this->send(); |
||
32 | } |
||
33 | |||
34 | public function failingTests() |
||
35 | { |
||
36 | $this->joliNotification->setBody('❌ Tests failed!'); |
||
37 | |||
38 | $this->send(); |
||
39 | } |
||
40 | |||
41 | protected function send() |
||
45 | } |
||
46 |