mirror of
https://github.com/webmasterskaya/joomla-oauth-server.git
synced 2024-11-24 06:54:51 +03:00
14 lines
331 B
PHP
14 lines
331 B
PHP
|
<?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.
|
||
|
}
|
||
|
}
|