* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cilex\Provider\Console; use Cilex\Application; use Cilex\ServiceProviderInterface; /** * Cilex Console Service Provider * * @author Beau Simensen */ class ConsoleServiceProvider implements ServiceProviderInterface { /** * {@inheritdoc} */ public function register(Application $app) { $serviceProvider = new BaseConsoleServiceProvider(); $serviceProvider->register($app); } }