Home
last modified time | relevance | path

Searched refs:PROTECTED (Results 1 – 25 of 33) sorted by relevance

12

/PHP-Parser/lib/PhpParser/
H A DModifiers.php11 public const PROTECTED = 2; define in PhpParser\\Modifiers
21 public const VISIBILITY_MASK = self::PUBLIC | self::PROTECTED | self::PRIVATE;
27 self::PROTECTED => 'protected',
/PHP-Parser/test/PhpParser/
H A DModifiersTest.php16 Modifiers::toString(Modifiers::PUBLIC | Modifiers::PROTECTED);
/PHP-Parser/test/code/parser/
H A DcommentAtEndOfClass.test24 flags: PROTECTED (2)
H A DsemiReserved.test413 newModifier: PROTECTED (2)
425 newModifier: PROTECTED (2)
/PHP-Parser/test/code/parser/stmt/class/
H A Dtrait.test80 newModifier: PROTECTED (2)
141 newModifier: PROTECTED (2)
H A Dasymmetric_visibility.test32 flags: PROTECTED | PRIVATE_SET (514)
89 flags: PROTECTED | PRIVATE_SET (514)
H A Dsimple.test92 flags: PROTECTED (2)
182 flags: PROTECTED (2)
H A Dproperty_modifiers.test42 flags: PROTECTED | ABSTRACT (18)
H A DconstModifiers.test60 flags: PROTECTED (2)
H A DpropertyTypes.test45 flags: PROTECTED | STATIC (10)
H A Dproperty_promotion.test58 flags: PROTECTED (2)
H A Dmodifier_error.test56 flags: PUBLIC | PROTECTED (3)
/PHP-Parser/lib/PhpParser/Node/Stmt/
H A DClassConst.php57 return (bool) ($this->flags & Modifiers::PROTECTED);
H A DProperty.php59 return (bool) ($this->flags & Modifiers::PROTECTED);
H A DClassMethod.php113 return (bool) ($this->flags & Modifiers::PROTECTED);
/PHP-Parser/lib/PhpParser/Builder/
H A DMethod.php48 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::PROTECTED);
H A DClassConst.php68 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::PROTECTED);
H A DParam.php98 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::PROTECTED);
H A DTraitUseAdaptation.php73 $this->setModifier(Modifiers::PROTECTED);
H A DProperty.php55 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::PROTECTED);
/PHP-Parser/lib/PhpParser/Node/
H A DParam.php79 return (bool) ($this->flags & Modifiers::PROTECTED);
/PHP-Parser/test/PhpParser/Builder/
H A DTraitUseAdaptationTest.php29 new Stmt\TraitUseAdaptation\Alias(null, 'foo', Modifiers::PROTECTED, null),
H A DClassConstTest.php49 Modifiers::PROTECTED
H A DMethodTest.php48 'flags' => Modifiers::PROTECTED | Modifiers::FINAL
H A DPropertyTest.php47 Modifiers::PROTECTED,

Completed in 23 milliseconds

12