0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-01-12 03:48:23 +00:00
BookStackApp_BookStack/app/Entities/Models/Deletable.php

15 lines
287 B
PHP
Raw Permalink Normal View History

<?php
2023-05-17 16:56:55 +00:00
namespace BookStack\Entities\Models;
use Illuminate\Database\Eloquent\Relations\MorphMany;
/**
* A model that can be deleted in a manner that deletions
* are tracked to be part of the recycle bin system.
*/
interface Deletable
{
public function deletions(): MorphMany;
}