richard
/
cyca
Archived
1
0
Fork 0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/app/Models/Observers/IgnoredFeedObserver.php

23 lines
362 B
PHP
Executable File

<?php
namespace App\Models\Observers;
use App\Models\IgnoredFeed;
class IgnoredFeedObserver
{
/**
* Handle the ignored feed "created" event.
*/
public function created(IgnoredFeed $ignoredFeed)
{
}
/**
* Handle the ignored feed "deleting" event.
*/
public function deleting(IgnoredFeed $ignoredFeed)
{
}
}