File: /var/www/html/wp-content/plugins/wp-rss-aggregator/v4/src/Modules/AddonsModule.php
<?php
namespace RebelCode\Wpra\Core\Modules;
use Psr\Container\ContainerInterface;
/**
* The module that contains addon-related services.
*
* @since 4.13
*/
class AddonsModule implements ModuleInterface
{
/**
* {@inheritdoc}
*
* @since 4.13
*/
public function getFactories()
{
return [
/*
* The list of WP RSS Aggregator addons.
*
* @since 4.13
*/
'wpra/addons' => function () {
return [];
}
];
}
/**
* {@inheritdoc}
*
* @since 4.13
*/
public function getExtensions()
{
return [];
}
/**
* {@inheritdoc}
*
* @since 4.13
*/
public function run(ContainerInterface $c)
{
}
}