PHP code example of switon / invoker
1. Go to this page and download the library: Download switon/invoker 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/ */
switon / invoker example snippets
use ReflectionMethod;
use Switon\Binding\ArgumentsBinderInterface;
use Switon\Core\Attribute\Autowired;
use Switon\Invoking\InvokerInterface;
class Dispatcher
{
#[Autowired] protected ArgumentsBinderInterface $argumentsBinder;
#[Autowired] protected InvokerInterface $invoker;
public function dispatch(object $controller, string $action): mixed
{
$method = new ReflectionMethod($controller, $action);
$arguments = $this->argumentsBinder->resolve($method);
return $this->invoker->invoke([$controller, $action], $arguments);
}
}
class PostController
{
public function showAction(int $id): array
{
return ['id' => $id];
}
}