koriym/param-reader

An annotation/attribute reader for method parameter

1.0.0 2022-03-07 12:57 UTC

This package is auto-updated.

Last update: 2024-04-07 17:30:35 UTC


README

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

Although doctine/annotation 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

$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.

class Consumer
{
    private $name;
    
    public function __construct(#[User, Foo] string $name) {
        $this->name = $name;
    }
}
class Consumer
{
    /**
     * @User
     * @Foo
     */
    private $name;
    
    public function __construct(string $name) {
        $this->name = $name;
    }
}

Related