NormalNotification.php 328 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 $this->object->mailto > 0 ? $this->object->mailto :[];
  9. }
  10. }