BookStack/app/Interfaces/Favouritable.php

14 lines
227 B
PHP
Raw Normal View History

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