File "SharedBeat.php"

Full Path: /var/www/drive/laravel/pulse/src/Events/SharedBeat.php
File size: 271 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Pulse\Events;

use Carbon\CarbonImmutable;

class SharedBeat
{
    /**
     * Create a new event instance.
     */
    public function __construct(
        public CarbonImmutable $time,
        public string $instance,
    ) {
        //
    }
}