| 1 | <?php |
||
| 13 | class Capabilities { |
||
| 14 | /** |
||
| 15 | * The list of registered capabilities |
||
| 16 | * |
||
| 17 | * @var array capabilities |
||
| 18 | */ |
||
| 19 | private static $capabilities = []; |
||
| 20 | |||
| 21 | // phpcs:ignore Squiz.Commenting.FunctionComment.Missing |
||
| 22 | public static function get( $name ) { |
||
| 25 | |||
| 26 | // phpcs:ignore Squiz.Commenting.FunctionComment.Missing |
||
| 27 | public static function register( $capability ) { |
||
| 31 | } |
||
| 32 |