🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 22:41:55 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
phpstan
/
phpdoc-parser
/
src
📍 /opt/cpanel/ea-wappspector/vendor/phpstan/phpdoc-parser/src
🔄 Refresh
✏️
Editing: ParserConfig.php
Read Only
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser; class ParserConfig { public bool $useLinesAttributes; public bool $useIndexAttributes; public bool $useCommentsAttributes; /** * @param array{lines?: bool, indexes?: bool, comments?: bool} $usedAttributes */ public function __construct(array $usedAttributes) { $this->useLinesAttributes = $usedAttributes['lines'] ?? false; $this->useIndexAttributes = $usedAttributes['indexes'] ?? false; $this->useCommentsAttributes = $usedAttributes['comments'] ?? false; } }
💾 Save Changes
❌ Cancel