0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-17 10:02:38 +00:00
BookStackApp_BookStack/app/Interfaces/Deletable.php

14 lines
No EOL
281 B
PHP

<?php
namespace BookStack\Interfaces;
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;
}