]>
BookStack Code Mirror - bookstack/blob - app/Interfaces/Viewable.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Reviewed #2393, Removed image guessing and added testing
[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
}