BookStack/app/Interfaces/Favouritable.php

14 lines
227 B
PHP
Raw Normal View History

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