[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/vendor/joomla/application/src/Controller/ -> ControllerResolverInterface.php (source)

   1  <?php
   2  /**
   3   * Part of the Joomla Framework Application Package
   4   *
   5   * @copyright  Copyright (C) 2005 - 2021 Open Source Matters, Inc. All rights reserved.
   6   * @license    GNU General Public License version 2 or later; see LICENSE
   7   */
   8  
   9  namespace Joomla\Application\Controller;
  10  
  11  use Joomla\Router\ResolvedRoute;
  12  
  13  /**
  14   * Interface defining a controller resolver.
  15   *
  16   * @since  2.0.0
  17   */
  18  interface ControllerResolverInterface
  19  {
  20      /**
  21       * Resolve the controller for a route
  22       *
  23       * @param   ResolvedRoute  $route  The route to resolve the controller for
  24       *
  25       * @return  callable
  26       *
  27       * @since   2.0.0
  28       * @throws  \InvalidArgumentException
  29       */
  30  	public function resolve(ResolvedRoute $route): callable;
  31  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer