mirror of
https://github.com/webmasterskaya/joomla-oauth-server.git
synced 2025-04-19 13:13:03 +03:00
19 lines
407 B
PHP
19 lines
407 B
PHP
<?php
|
|
/**
|
|
* @package Joomla.Administrator
|
|
* @subpackage com_oauthserver
|
|
*
|
|
* @copyright (c) 2024. Webmasterskaya. <https://webmasterskaya.xyz>
|
|
* @license MIT; see LICENSE.txt
|
|
**/
|
|
|
|
namespace Webmasterskaya\Component\OauthServer\Administrator\Dispatcher;
|
|
|
|
use Joomla\CMS\Dispatcher\ComponentDispatcher;
|
|
|
|
\defined('_JEXEC') or die;
|
|
|
|
class Dispatcher extends ComponentDispatcher
|
|
{
|
|
}
|