// test: named parameter completion in attribute constructor
// feature: completion
// Adapted from phpactor WorseNamedParameterCompletorTest 'Attributes'
// expect: param:
---
<?php
#[Attribute]
class SomeAttribute {
public function __construct(private string $param) {}
}
#[SomeAttribute(<>)]
class Foo {}