mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
10 lines
209 B
PHP
10 lines
209 B
PHP
|
<?php
|
||
|
|
||
|
interface PhabricatorPolicyInterface {
|
||
|
|
||
|
public function getCapabilities();
|
||
|
public function getPolicy($capability);
|
||
|
public function hasAutomaticCapability($capability, PhabricatorUser $viewer);
|
||
|
|
||
|
}
|