Laragear/Rewind

View on GitHub
src/Events/StateRestored.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Laragear\Rewind\Events;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Events\Dispatchable;

class StateRestored
{
    use Dispatchable;

    /**
     * Create a new event instance.
     */
    public function __construct(public Model $model)
    {
        //
    }
}