/* Decoded by unphp.net */ attrGroups as $attributeGroup) { foreach ($attributeGroup->attrs as $attribute) { if ($this->isSymfonyRouteAttribute($attribute)) { $attribute->name = new FullyQualified(self::ATTRIBUTE_ROUTE); return $node; } } } return null; } public function isSymfonyRouteAttribute(Node $node) : bool { return $node instanceof Attribute && $node->name !== null && (string) $node->name === self::ANNOTATION_ROUTE; } } ?>