NotificationContent.php 255 B

1234567891011121314151617
  1. <?php
  2. namespace App\Services\Notification;
  3. class NotificationContent
  4. {
  5. public function __construct(protected string $action)
  6. {
  7. }
  8. public function toArray()
  9. {
  10. return [
  11. 'action' => $this->action,
  12. ];
  13. }
  14. }