golden hour
/opt/cpanel/ea-wappspector/vendor/phpstan/phpdoc-parser/src
⬆️ Go Up
Upload
File/Folder
Size
Actions
Ast
-
Del
OK
Lexer
-
Del
OK
Parser
-
Del
OK
ParserConfig.php
551 B
Del
OK
Printer
-
Del
OK
Edit: ParserConfig.php
<?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