/home/smartonegroup/public_html/veroserv/vendor/spatie/ray/src/Payloads/NotifyPayload.php
<?php

namespace Spatie\Ray\Payloads;

class NotifyPayload extends Payload
{
    /** @var string */
    protected $text;

    public function __construct(string $text)
    {
        $this->text = $text;
    }

    public function getType(): string
    {
        return 'notify';
    }

    public function getContent(): array
    {
        return [
            'value' => $this->text,
        ];
    }
}