BookStack/app/Interfaces/Favouritable.php

14 lines
227 B
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Interfaces;
2021-05-15 23:29:56 +00:00
use Illuminate\Database\Eloquent\Relations\MorphMany;
interface Favouritable
{
/**
* Get the related favourite instances.
*/
public function favourites(): MorphMany;
2021-06-26 15:23:15 +00:00
}