src/ActionFactoryInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Aol\Atc;

interface ActionFactoryInterface
{
    /**
     * @param string  $action  Action name to be parsed.
     * @param array   $params  An array of params from the router.
     * @return ActionInterface|null
     */
    public function newInstance($action, $params);
}