|
1
|
<?php |
|
2
|
|
|
3
|
namespace WPStaging\Notifications; |
|
4
|
|
|
5
|
use WPStaging\Notifications\Transporter\EmailNotification; |
|
6
|
|
|
7
|
class NotificationsProvider |
|
8
|
{ |
|
9
|
|
|
10
|
|
|
11
|
|
|
12
|
public function getProviders(): array |
|
13
|
{ |
|
14
|
return [ |
|
15
|
EmailNotification::class |
|
16
|
]; |
|
17
|
} |
|
18
|
} |
|
19
|
|