* @copyright 2017-2020 Atanas Angelov * @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0 * @link https://wpemerge.com/ */ namespace WPEmergeAppCore\Sidebar; use WPEmerge\ServiceProviders\ServiceProviderInterface; /** * Provide sidebar dependencies. * * @codeCoverageIgnore */ class SidebarServiceProvider implements ServiceProviderInterface { /** * {@inheritDoc} */ public function register( $container ) { $container['wpemerge_app_core.sidebar.sidebar'] = function() { return new Sidebar(); }; } /** * {@inheritDoc} */ public function bootstrap( $container ) { // Nothing to bootstrap. } }