Home
last modified time | relevance | path

Searched refs:STATIC (Results 1 – 25 of 26) sorted by relevance

12

/PHP-Parser/test/code/parser/stmt/class/
H A DstaticMethod.test21 flags: STATIC (8)
54 flags: STATIC (8)
87 flags: STATIC (8)
120 flags: STATIC (8)
153 flags: STATIC (8)
186 flags: STATIC (8)
H A DimplicitPublic.test46 flags: STATIC (8)
89 flags: STATIC (8)
103 flags: STATIC | FINAL (40)
H A DpropertyTypes.test45 flags: PROTECTED | STATIC (10)
83 flags: PUBLIC | STATIC | READONLY (73)
H A DstaticType.test23 flags: PUBLIC | STATIC (9)
H A Dphp4Style.test56 flags: ABSTRACT | STATIC (24)
H A Dproperty_modifiers.test74 flags: PRIVATE | STATIC (12)
H A DconstModifierErrors.test24 flags: STATIC (8)
H A Dsimple.test138 flags: PUBLIC | STATIC (9)
H A Dmodifier_error.test158 flags: STATIC (8)
H A Dproperty_hooks.test500 flags: ABSTRACT | STATIC (24)
/PHP-Parser/lib/PhpParser/
H A DModifiers.php13 public const STATIC = 8; define in PhpParser\\Modifiers
29 self::STATIC => 'static',
H A DNodeDumper.php179 if ($flags & Modifiers::STATIC) {
H A DParserAbstract.php1114 if ($node->flags & Modifiers::STATIC) {
1142 foreach ([Modifiers::STATIC, Modifiers::ABSTRACT, Modifiers::READONLY] as $modifier) {
H A DPrettyPrinterAbstract.php1229 . ($modifiers & Modifiers::STATIC ? 'static ' : '')
/PHP-Parser/test/PhpParser/Node/Stmt/
H A DPropertyTest.php34 $node = new Property(Modifiers::STATIC, []);
/PHP-Parser/lib/PhpParser/Node/Stmt/
H A DProperty.php73 return (bool) ($this->flags & Modifiers::STATIC);
H A DClassMethod.php141 return (bool) ($this->flags & Modifiers::STATIC);
/PHP-Parser/lib/PhpParser/Builder/
H A DMethod.php70 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::STATIC);
H A DProperty.php77 $this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::STATIC);
/PHP-Parser/test/code/parser/
H A DsemiReserved.test98 flags: STATIC (8)
112 flags: STATIC (8)
/PHP-Parser/test/PhpParser/Builder/
H A DMethodTest.php34 'flags' => Modifiers::PUBLIC | Modifiers::ABSTRACT | Modifiers::STATIC,
H A DPropertyTest.php34 Modifiers::PRIVATE | Modifiers::STATIC,
/PHP-Parser/
H A DUPGRADE-5.0.md302 PhpParser\Node\Stmt\Class_::MODIFIER_STATIC -> PhpParser\Modifiers::STATIC
/PHP-Parser/grammar/
H A Dphp.y919 | T_STATIC { $$ = Modifiers::STATIC; }
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php2089 $self->semValue = Modifiers::STATIC;

Completed in 63 milliseconds

12