* @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace VDM\Joomla\Github; use Joomla\DI\Container; use VDM\Joomla\Github\Service\Utilities; use VDM\Joomla\Componentbuilder\Power\Service\Github; use VDM\Joomla\Interfaces\FactoryInterface; use VDM\Joomla\Abstraction\Factory as ExtendingFactory; /** * Github Factory * * @since 5.1.1 */ abstract class Factory extends ExtendingFactory implements FactoryInterface { /** * Package Container * * @var Container|null * @since 5.0.3 **/ protected static ?Container $container = null; /** * Create a container object * * @return Container * @since 3.2.0 */ protected static function createContainer(): Container { return (new Container()) ->registerServiceProvider(new Utilities()) ->registerServiceProvider(new Github()); } }