mirror of
https://github.com/webmasterskaya/joomla-oauth-server.git
synced 2024-11-23 22:34:50 +03:00
13 lines
254 B
PHP
13 lines
254 B
PHP
|
<?php
|
||
|
|
||
|
use Joomla\DI\ServiceProviderInterface;
|
||
|
|
||
|
\defined('_JEXEC') or die;
|
||
|
|
||
|
return new class implements ServiceProviderInterface {
|
||
|
|
||
|
public function register(\Joomla\DI\Container $container)
|
||
|
{
|
||
|
// TODO: Implement register() method.
|
||
|
}
|
||
|
};
|