]>
BookStack Code Mirror - bookstack/blob - app/Permissions/PermissionStatus.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #5917 from BookStackApp/copy_references
[bookstack]
/
app
/
Permissions
/
PermissionStatus.php
1
<?php
2
3
namespace BookStack\Permissions;
4
5
class PermissionStatus
6
{
7
const IMPLICIT_DENY = 0;
8
const IMPLICIT_ALLOW = 1;
9
const EXPLICIT_DENY = 2;
10
const EXPLICIT_ALLOW = 3;
11
}