2017 © Pedro Peláez
 

library arguments-resolver

ArgumentsResolver allows you to determine the arguments to pass to a function or method.

image

rybakit/arguments-resolver

ArgumentsResolver allows you to determine the arguments to pass to a function or method.

  • Thursday, January 11, 2018
  • by rybakit
  • Repository
  • 2 Watchers
  • 21 Stars
  • 18,543 Installations
  • PHP
  • 10 Dependents
  • 1 Suggesters
  • 1 Forks
  • 2 Open issues
  • 7 Versions
  • 5 % Grown

The README.md

ArgumentsResolver

Quality Assurance Scrutinizer Code Quality Code Coverage, (*1)

ArgumentsResolver allows you to determine the arguments to pass to a function or method., (*2)

Installation

The recommended way to install ArgumentsResolver is through Composer:, (*3)

composer require rybakit/arguments-resolver

Usage example

use ArgumentsResolver\InDepthArgumentsResolver;

$greet = function ($username, DateTime $date, $greeting = 'Hello %s!') {
    // ...
};

$parameters = [
    'Welcome %s!',
    ['foo'],
    new DateTime(),
    'username' => 'Stranger',
    'bar',
];

$arguments = (new InDepthArgumentsResolver($greet))->resolve($parameters);
print_r($arguments);

The above example will output:, (*4)

Array
(
    [0] => Stranger
    [1] => DateTime Object (...)
    [2] => Welcome %s!
)

Resolvers

The library ships with two resolvers, the InDepthArgumentsResolver and NamedArgumentsResolver. They both expect a function to be supplied as a single constructor argument. The function can be any callable, a string representing a class method or an instance of ReflectionFunctionAbstract:, (*5)

new InDepthArgumentsResolver(['MyClass', 'myMethod']);
new InDepthArgumentsResolver([new MyClass(), 'myMethod']);
new InDepthArgumentsResolver(['MyClass', 'myStaticMethod']);
new InDepthArgumentsResolver('MyClass::myStaticMethod');
new InDepthArgumentsResolver('MyClass::__construct');
new InDepthArgumentsResolver(['MyClass', '__construct']);
new InDepthArgumentsResolver(new MyInvokableClass());
new InDepthArgumentsResolver(function ($foo) {});
new InDepthArgumentsResolver('MyNamespace\my_function');
new InDepthArgumentsResolver(new ReflectionMethod('MyClass', 'myMethod'));
new InDepthArgumentsResolver(new ReflectionFunction('MyNamespace\my_function'));

There is also an utility class which helps in creating a reflection instance:, (*6)

use ArgumentsResolver\ReflectionFactory;

$reflection = ReflectionFactory::create('MyClass::__construct');
$resolver = new InDepthArgumentsResolver($reflection);

InDepthArgumentsResolver

In the InDepthArgumentsResolver, the decision about whether an argument matched the parameter value or not is influenced by multiple factors, namely the argument's type, the class hierarchy (if it's an object), the argument name and the argument position., (*7)

To clarify, consider each circumstance in turn:, (*8)

Argument type, (*9)

function foo(array $array, stdClass $object, callable $callable) {}

(new InDepthArgumentsResolver('foo'))->resolve([
    ...
    function () {},    // $callable
    ...
    new stdClass(),    // $object
    ...
    [42],              // $array
    ...
]);

Class hierarchy, (*10)

function foo(Exception $e, RuntimeException $re) {}

(new InDepthArgumentsResolver('foo'))->resolve([
    ...
    new RuntimeException(),    // $re
    ...
    new Exception(),           // $e
    ...
]);

Argument name, (*11)

function foo($a, $b) {}

(new InDepthArgumentsResolver('foo'))->resolve([
    ...
    'c' => 3,
    'b' => 2,    // $b
    'a' => 1,    // $a
    ...
]);

Argument position, (*12)

function foo($a, $b) {}

(new InDepthArgumentsResolver('foo'))->resolve([
    1,   // $a
    2,   // $b
    ...
]);

NamedArgumentsResolver

The NamedArgumentsResolver is a very simple resolver which does the matching only by the argument name. Therefore this requires parameters to be an associative array:, (*13)

function foo($a, array $b, $c = null) {}

(new NamedArgumentsResolver('foo'))->resolve([
    ...
    'b' => [],       // $b
    'a' => 1,        // $a
    'c' => 'bar',    // $c
    ...
]);

Tests

ArgumentsResolver uses PHPUnit for unit testing. In order to run the tests, you'll first need to setup the test suite using composer:, (*14)

composer install

You can then run the tests:, (*15)

vendor/bin/phpunit

License

ArgumentsResolver is released under the MIT License. See the bundled LICENSE file for details., (*16)

The Versions

11/01 2018

dev-master

9999999-dev https://github.com/rybakit/arguments-resolver

ArgumentsResolver allows you to determine the arguments to pass to a function or method.

  Sources   Download

MIT

The Requires

  • php ^5.4|^7.0

 

by Eugene Leonovich

function reflection resolver callable injection method parameters arguments invoke

03/01 2017

v0.5.1

0.5.1.0 https://github.com/rybakit/arguments-resolver

ArgumentsResolver allows you to determine the arguments to pass to a function or method.

  Sources   Download

MIT

The Requires

  • php ^5.4|^7.0

 

by Eugene Leonovich

function reflection resolver callable injection method parameters arguments invoke

29/12 2015

v0.5.0

0.5.0.0 https://github.com/rybakit/arguments-resolver

ArgumentsResolver allows you to determine the arguments to pass to a function or method.

  Sources   Download

MIT

The Requires

  • php ^5.4|^7.0

 

by Eugene Leonovich

function reflection resolver callable injection method parameters arguments invoke

08/09 2014

v0.4.0

0.4.0.0 https://github.com/rybakit/arguments-resolver

ArgumentsResolver allows you to determine the arguments to pass to a function or method.

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

by Eugene Leonovich

arguments resolver

21/08 2014

v0.3.0

0.3.0.0 https://github.com/rybakit/callable-arguments-resolver

CallableArgumentsResolver allows you to determine the arguments to pass to the callable.

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

by Eugene Leonovich

callable arguments resolver

15/08 2014

v0.2.0

0.2.0.0 https://github.com/rybakit/callable-arguments-resolver

CallableArgumentsResolver allows you to determine the arguments to pass to the callable.

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

by Eugene Leonovich

callable arguments resolver

08/08 2014

v0.1.0

0.1.0.0 https://github.com/rybakit/callable-arguments-resolver

CallableArgumentsResolver allows you to determine the arguments to pass to the callable.

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Eugene Leonovich

callable arguments resolver