| 1 | <?php |
||
| 13 | abstract class AggregateRule implements Rule { |
||
| 14 | /** |
||
| 15 | * The set of rules used to evaluate if permission is granted |
||
| 16 | * |
||
| 17 | * @var array rules |
||
| 18 | */ |
||
| 19 | protected $rules; |
||
| 20 | |||
| 21 | // phpcs:ignore Squiz.Commenting.FunctionComment.Missing |
||
| 22 | public function __construct() { |
||
| 25 | |||
| 26 | // phpcs:ignore Squiz.Commenting.FunctionComment.Missing |
||
| 27 | public function add_rule( $rule ) { |
||
| 30 | |||
| 31 | // phpcs:ignore Squiz.Commenting.FunctionComment.Missing |
||
| 32 | public function register( $name ) { |
||
| 35 | } |
||
| 36 |