minor type improvements

This commit is contained in:
Robin Appelman 2021-03-10 15:00:37 +01:00
commit b5c6921f2e
6 changed files with 17 additions and 17 deletions

View file

@ -33,8 +33,11 @@ class ACL {
const FLAG_OBJECT_INHERIT = 0x1;
const FLAG_CONTAINER_INHERIT = 0x2;
/** @var int */
private $type;
/** @var int */
private $flags;
/** @var int */
private $mask;
public function __construct(int $type, int $flags, int $mask) {