2017 © Pedro Peláez
 

library argument-resolver

A lightweight utility to resolve method arguments based on types and names

image

sroze/argument-resolver

A lightweight utility to resolve method arguments based on types and names

  • Saturday, December 16, 2017
  • by sroze
  • Repository
  • 2 Watchers
  • 8 Stars
  • 433 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 8 Versions
  • 0 % Grown

The README.md

Argument Resolver

Build Status SensioLabsInsight Scrutinizer Code Quality, (*1)

This lightweight library helps to automatically call a callable (function, method or closure) with a list of available arguments. The developer of the callable can then use type hinting and/or specific variable names to chose which arguments (s)he wants., (*2)

Installation

The suggested installation method is via composer:, (*3)

composer require sroze/argument-resolver

Resolving arguments

The argument resolver can be created easily using the ArgumentResolverFactory class:, (*4)

use ArgumentResolver\ArgumentResolverFactory;

$argumentResolver = ArgumentResolverFactory::create();

The resolveArguments method returns an ordered array of resolved arguments for the given callable. The method's arguments are:, (*5)

  1. The callable
  2. The available arguments, as an array

Here's an example of how it can be used to have arguments of some closures based on a set of available arguments:, (*6)

$closures = [
    function(MyClass $object) {
        return $object instanceof MyClass;
    },
    function($bar, array $list) {
        return count($list);
    }
];

foreach ($closures as $callable) {
    $arguments = $argumentResolver->resolveArguments($callable, [
        'classObject' => new MyClass(),
        'bar' => 'foo',
        'list' => ['an', 'array']
    ]);

    // ...
}

More than argument identification with type hinting, you can also use names:, (*7)

class Foo
{
    public function method($foo, $bar)
    {
    }
}

$argumentResolver->resolveArguments([new Foo(), 'method'], [
    'bar' => 1,
    'foo' => 2,
    'baz' => 3
]);

// Which returns: [2, 1]

To prevent possible conflicts, the library follow priorities and constraints described in the Rules chapter., (*8)

The callable runner

Because when you've resolved the needed arguments of a given callable it's often to call it, the library comes with a CallableRunner class that will do everything for you:, (*9)

$runner = new CallableRunner($argumentResolver);
$runner->run($callable, $availableArguments);

Instantiate an object

Sometimes, you would like to instantiate an object with a set of arguments. Here's the Instanciator usage:, (*10)

$instantiator = new Instantiator($argumentResolver);
$instantiator->instantiate(YourClassName::class, $availableArguments);

Rules

Priorities

These are the resolution priorities for the arguments:, (*11)

  1. Strict matching: Same name and same type
  2. Type matching
  3. Name matching

Constraints

The following constraints applies:, (*12)

  • If there's multiple arguments of the same type, then strict matching apply for this type
  • Required arguments have to be resolved

The Versions

16/12 2017

dev-master

9999999-dev https://github.com/sroze/ArgumentResolver

A lightweight utility to resolve method arguments based on types and names

  Sources   Download

MIT

The Development Requires

resolver argument type hint

16/12 2017

2.0.4

2.0.4.0 https://github.com/sroze/ArgumentResolver

A lightweight utility to resolve method arguments based on types and names

  Sources   Download

MIT

The Development Requires

resolver argument type hint

16/12 2017

2.0.3

2.0.3.0 https://github.com/sroze/ArgumentResolver

A lightweight utility to resolve method arguments based on types and names

  Sources   Download

MIT

The Development Requires

resolver argument type hint

16/12 2017

2.0.2

2.0.2.0 https://github.com/sroze/ArgumentResolver

A lightweight utility to resolve method arguments based on types and names

  Sources   Download

MIT

The Development Requires

resolver argument type hint

13/05 2015

2.0.1

2.0.1.0 https://github.com/sroze/ArgumentResolver

A lightweight utility to resolve method arguments based on types and names

  Sources   Download

MIT

The Development Requires

resolver argument type hint

13/05 2015

2.0.0

2.0.0.0 https://github.com/sroze/ArgumentResolver

A lightweight utility to resolve method arguments based on types and names

  Sources   Download

MIT

The Development Requires

resolver argument type hint

07/04 2015

v1.0.1

1.0.1.0 https://github.com/sroze/ArgumentResolver

A lightweight utility to resolve method arguments based on types and names

  Sources   Download

MIT

The Development Requires

resolver argument type hint

31/03 2015

v1.0.0

1.0.0.0 https://github.com/sroze/ArgumentResolver

A lightweight utility to resolve method arguments based on types and names

  Sources   Download

MIT

The Development Requires

resolver argument type hint