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 Switon\Core\Attribute\Autowired;
use Switon\Invoking\InvokerInterface;

class RequestHandler
{
    #[Autowired] protected InvokerInterface $invoker;

    public function handle(object $controller, string $action, array $routeParams): mixed
    {
        return $this->invoker->invoke([$controller, $action], $routeParams);
    }
}