koel/app/Events/SongLikeToggled.php

16 lines
242 B
PHP
Raw Normal View History

2015-12-21 13:49:00 +00:00
<?php
namespace App\Events;
use App\Models\Interaction;
use Illuminate\Queue\SerializesModels;
class SongLikeToggled extends Event
{
use SerializesModels;
2022-07-29 06:47:10 +00:00
public function __construct(public Interaction $interaction)
2015-12-21 13:49:00 +00:00
{
}
}