This commit is contained in:
Richard Dern
2022-01-12 00:35:37 +01:00
commit 400e3d01f1
1363 changed files with 57778 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<?php
namespace App\Models\Observers;
use App\Jobs\EnqueueFeedUpdate;
use App\Models\Feed;
class FeedObserver
{
/**
* Handle the feed "created" event.
*/
public function created(Feed $feed)
{
EnqueueFeedUpdate::dispatch($feed);
}
/**
* Handle the feed "updated" event.
*/
public function updated(Feed $feed)
{
}
/**
* Handle the feed "deleted" event.
*/
public function deleted(Feed $feed)
{
}
/**
* Handle the feed "restored" event.
*/
public function restored(Feed $feed)
{
}
/**
* Handle the feed "force deleted" event.
*/
public function forceDeleted(Feed $feed)
{
}
}