function ParserAbstract::getAttributesAt
Get combined start and end attributes at a stack location
Parameters
int $stackPos Stack location:
Return value
array<string, mixed> Combined start and end attributes
10 calls to ParserAbstract::getAttributesAt()
- ParserAbstract::checkClassConst in vendor/
nikic/ php-parser/ lib/ PhpParser/ ParserAbstract.php - ParserAbstract::checkClassMethod in vendor/
nikic/ php-parser/ lib/ PhpParser/ ParserAbstract.php - ParserAbstract::checkClassModifier in vendor/
nikic/ php-parser/ lib/ PhpParser/ ParserAbstract.php - ParserAbstract::checkClassName in vendor/
nikic/ php-parser/ lib/ PhpParser/ ParserAbstract.php - ParserAbstract::checkModifier in vendor/
nikic/ php-parser/ lib/ PhpParser/ ParserAbstract.php
File
-
vendor/
nikic/ php-parser/ lib/ PhpParser/ ParserAbstract.php, line 722
Class
Namespace
PhpParserCode
protected function getAttributesAt(int $stackPos) : array {
return $this->getAttributes($this->tokenStartStack[$stackPos], $this->tokenEndStack[$stackPos]);
}