Refresh
This commit is contained in:
22
app/Models/Observers/IgnoredFeedObserver.php
Executable file
22
app/Models/Observers/IgnoredFeedObserver.php
Executable file
@@ -0,0 +1,22 @@
|
||||
<?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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user