<?php namespace App\Services\Notification; class NotificationContent { public function __construct(protected string $action) { } public function toArray() { return [ 'action' => $this->action, ]; } }