phpvms/app/Events/NewsUpdated.php
Nabeel S. 273cb86bc5
Add Laravel Pint linting (#1933)
* Run linter

* Run Pint in github action

* Run the linter verbose
2025-01-11 17:03:03 -06:00

14 lines
181 B
PHP

<?php
namespace App\Events;
use App\Contracts\Event;
use App\Models\News;
class NewsUpdated extends Event
{
public function __construct(
public News $news
) {}
}