NormalNotification.php 277 B

12345678910111213
  1. <?php
  2. namespace App\Services\Notification\ActionBrowser;
  3. use App\Services\Notification\Abstracts\ActionBrowserNotificationAbstract;
  4. class NormalNotification extends ActionBrowserNotificationAbstract
  5. {
  6. protected function userIDs(): array
  7. {
  8. return [];
  9. }
  10. }