joomla-oauth-server/plg_user_oauthserver/src/Extension/Plugin.php

14 lines
331 B
PHP
Raw Normal View History

2024-03-02 04:44:33 +03:00
<?php
namespace Webmasterskaya\Plugin\User\OauthServer\Extension;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\Event\SubscriberInterface;
class Plugin extends CMSPlugin implements SubscriberInterface
{
public static function getSubscribedEvents(): array
{
// TODO: Implement getSubscribedEvents() method.
}
}