An open API service indexing awesome lists of open source software.

https://github.com/koriym/koriym.paramreader

An attribute/annotation reader for parameters
https://github.com/koriym/koriym.paramreader

annotation attribute php8

Last synced: 10 months ago
JSON representation

An attribute/annotation reader for parameters

Awesome Lists containing this project

README

          

# Koriym.ParamReader

This is a meta data reader to get attributes or annotations from method parameters.

Although [doctine/annotation](https://github.com/doctrine/annotations) cannot annotate method parameters, this reader treats annotations of properties with the same names as method parameters as method parameter metadata.

This is especially useful when you want to prepare metadata for injection.

## Installation

composer require koriym/param-reader

## Getting Started

```php
$reader = new PramReader();
$user = $reader->getParametrAnnotation(new ReflectionParameter([Consumer::class, '__construct'], 'name'), User::class);
assert($user instanceof User);

$users = $reader->getParametrAnnotations(new ReflectionParameter([Consumer::class, '__construct'], 'name'));
assert($users[0] instanceof User);
assert($users[1] instanceof Foo);
````

The following two codes provide the same meta information.

```php
class Consumer
{
private $name;

public function __construct(#[User, Foo] string $name) {
$this->name = $name;
}
}
```

```php
class Consumer
{
/**
* @User
* @Foo
*/
private $name;

public function __construct(string $name) {
$this->name = $name;
}
}
```

## Related

* [koriym/attributes](https://github.com/koriym/Koriym.Attributes)