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