]>
BookStack Code Mirror - bookstack/blob - app/Interfaces/Viewable.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
4a7b6a013f0e273dc2bba46534d1a717244b7936
[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
}