/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Node
/
Stmt
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt
mkdir
upload
Name
Size
Mode
Actions
TraitUseAdaptation/
-
0755
rm
Break_.php
693
0644
edit
dl
rm
Case_.php
855
0644
edit
dl
rm
Catch_.php
1129
0644
edit
dl
rm
ClassConst.php
2449
0644
edit
dl
rm
ClassLike.php
2938
0644
edit
dl
rm
ClassMethod.php
4745
0644
edit
dl
rm
Class_.php
4442
0644
edit
dl
rm
Const_.php
693
0644
edit
dl
rm
Continue_.php
708
0644
edit
dl
rm
DeclareDeclare.php
897
0644
edit
dl
rm
Declare_.php
881
0644
edit
dl
rm
Do_.php
813
0644
edit
dl
rm
Echo_.php
655
0644
edit
dl
rm
ElseIf_.php
820
0644
edit
dl
rm
Else_.php
658
0644
edit
dl
rm
EnumCase.php
1170
0644
edit
dl
rm
Enum_.php
1573
0644
edit
dl
rm
Expression.php
717
0644
edit
dl
rm
Finally_.php
666
0644
edit
dl
rm
Foreach_.php
1625
0644
edit
dl
rm
For_.php
1321
0644
edit
dl
rm
Function_.php
2556
0644
edit
dl
rm
Global_.php
675
0644
edit
dl
rm
Goto_.php
755
0644
edit
dl
rm
GroupUse.php
1005
0644
edit
dl
rm
HaltCompiler.php
754
0644
edit
dl
rm
If_.php
1317
0644
edit
dl
rm
InlineHTML.php
649
0644
edit
dl
rm
Interface_.php
1229
0644
edit
dl
rm
Label.php
717
0644
edit
dl
rm
Namespace_.php
939
0644
edit
dl
rm
Nop.php
301
0644
edit
dl
rm
Property.php
2587
0644
edit
dl
rm
PropertyProperty.php
968
0644
edit
dl
rm
Return_.php
673
0644
edit
dl
rm
StaticVar.php
904
0644
edit
dl
rm
Static_.php
688
0644
edit
dl
rm
Switch_.php
800
0644
edit
dl
rm
Throw_.php
665
0644
edit
dl
rm
TraitUse.php
898
0644
edit
dl
rm
TraitUseAdaptation.php
266
0644
edit
dl
rm
Trait_.php
1001
0644
edit
dl
rm
TryCatch.php
1035
0644
edit
dl
rm
Unset_.php
667
0644
edit
dl
rm
UseUse.php
1605
0644
edit
dl
rm
Use_.php
1368
0644
edit
dl
rm
While_.php
816
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php
(4442B)
<?php declare(strict_types=1); namespace PhpParser\Node\Stmt; use PhpParser\Error; use PhpParser\Node; class Class_ extends ClassLike { const MODIFIER_PUBLIC = 1; const MODIFIER_PROTECTED = 2; const MODIFIER_PRIVATE = 4; const MODIFIER_STATIC = 8; const MODIFIER_ABSTRACT = 16; const MODIFIER_FINAL = 32; const MODIFIER_READONLY = 64; const VISIBILITY_MODIFIER_MASK = 7; // 1 | 2 | 4 /** @var int Type */ public $flags; /** @var null|Node\Name Name of extended class */ public $extends; /** @var Node\Name[] Names of implemented interfaces */ public $implements; /** * Constructs a class node. * * @param string|Node\Identifier|null $name Name * @param array $subNodes Array of the following optional subnodes: * 'flags' => 0 : Flags * 'extends' => null : Name of extended class * 'implements' => array(): Names of implemented interfaces * 'stmts' => array(): Statements * 'attrGroups' => array(): PHP attribute groups * @param array $attributes Additional attributes */ public function __construct($name, array $subNodes = [], array $attributes = []) { $this->attributes = $attributes; $this->flags = $subNodes['flags'] ?? $subNodes['type'] ?? 0; $this->name = \is_string($name) ? new Node\Identifier($name) : $name; $this->extends = $subNodes['extends'] ?? null; $this->implements = $subNodes['implements'] ?? []; $this->stmts = $subNodes['stmts'] ?? []; $this->attrGroups = $subNodes['attrGroups'] ?? []; } public function getSubNodeNames() : array { return ['attrGroups', 'flags', 'name', 'extends', 'implements', 'stmts']; } /** * Whether the class is explicitly abstract. * * @return bool */ public function isAbstract() : bool { return (bool) ($this->flags & self::MODIFIER_ABSTRACT); } /** * Whether the class is final. * * @return bool */ public function isFinal() : bool { return (bool) ($this->flags & self::MODIFIER_FINAL); } public function isReadonly() : bool { return (bool) ($this->flags & self::MODIFIER_READONLY); } /** * Whether the class is anonymous. * * @return bool */ public function isAnonymous() : bool { return null === $this->name; } /** * @internal */ public static function verifyClassModifier($a, $b) { if ($a & self::MODIFIER_ABSTRACT && $b & self::MODIFIER_ABSTRACT) { throw new Error('Multiple abstract modifiers are not allowed'); } if ($a & self::MODIFIER_FINAL && $b & self::MODIFIER_FINAL) { throw new Error('Multiple final modifiers are not allowed'); } if ($a & self::MODIFIER_READONLY && $b & self::MODIFIER_READONLY) { throw new Error('Multiple readonly modifiers are not allowed'); } if ($a & 48 && $b & 48) { throw new Error('Cannot use the final modifier on an abstract class'); } } /** * @internal */ public static function verifyModifier($a, $b) { if ($a & self::VISIBILITY_MODIFIER_MASK && $b & self::VISIBILITY_MODIFIER_MASK) { throw new Error('Multiple access type modifiers are not allowed'); } if ($a & self::MODIFIER_ABSTRACT && $b & self::MODIFIER_ABSTRACT) { throw new Error('Multiple abstract modifiers are not allowed'); } if ($a & self::MODIFIER_STATIC && $b & self::MODIFIER_STATIC) { throw new Error('Multiple static modifiers are not allowed'); } if ($a & self::MODIFIER_FINAL && $b & self::MODIFIER_FINAL) { throw new Error('Multiple final modifiers are not allowed'); } if ($a & self::MODIFIER_READONLY && $b & self::MODIFIER_READONLY) { throw new Error('Multiple readonly modifiers are not allowed'); } if ($a & 48 && $b & 48) { throw new Error('Cannot use the final modifier on an abstract class member'); } } public function getType() : string { return 'Stmt_Class'; } }
Save
cmd:
run