]> BookStack Code Mirror - bookstack/blob - app/Interfaces/Viewable.php
d79ebed997d8a6a91219511c50da4851c61d5e7d
[bookstack] / app / Interfaces / Viewable.php
1 <?php
2
3 namespace BookStack\Interfaces;
4
5 use Illuminate\Database\Eloquent\Relations\MorphMany;
6
7 interface Viewable
8 {
9     /**
10      * Get all view instances for this viewable model.
11      */
12     public function views(): MorphMany;
13 }