PHP code example of ellipse / resolvable-callable

1. Go to this page and download the library: Download ellipse/resolvable-callable library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ellipse / resolvable-callable example snippets




namespace App;

use Some\Psr11Container;

use Ellipse\Resolvable\DefaultResolvableCallableFactory;

// The callable to resolve.
$callable = function (SomeClass $p1, int $p2 = 0, int $p3, string $p4 = 'p4') {

    // $p1 is the instance returned by $container->get(SomeClass::class);
    // $p2 value is 2
    // $p3 value is 3
    // $p3 value is 'p4'

    return 'result';

};

// Some Psr-11 container.
$container = new Psr11Container;

// Resolve the callable. $resolved value is 'result'.
$factory = new DefaultResolvableCallableFactory;

$resolved = $factory($callable)->value($container, [2, 3]);