Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
File Content:
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; } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
Ast
---
0755
Lexer
---
0755
Parser
---
0755
Printer
---
0755
ParserConfig.php
551 bytes
0644
N4ST4R_ID | Naxtarrr