Lines Matching refs:flags
21 public int $flags; variable in PhpParser\\Node\\Param
36 * @param int $flags Optional visibility flags
44 int $flags = 0, argument
54 $this->flags = $flags;
71 return $this->flags !== 0;
75 return (bool) ($this->flags & Modifiers::PUBLIC);
79 return (bool) ($this->flags & Modifiers::PROTECTED);
83 return (bool) ($this->flags & Modifiers::PRIVATE);
87 return (bool) ($this->flags & Modifiers::READONLY);
94 return (bool) ($this->flags & Modifiers::PUBLIC_SET);
101 return (bool) ($this->flags & Modifiers::PROTECTED_SET);
108 return (bool) ($this->flags & Modifiers::PRIVATE_SET);