BookStack/app/Interfaces/Favouritable.php

14 lines
227 B
PHP
Raw Normal View History

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