2021-11-20 15:03:56 +01:00
|
|
|
<?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;
|
2021-11-22 23:22:31 +01:00
|
|
|
}
|