FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
core
/
app-core
/
src
/
Image
Edit File: ImageServiceProvider.php
<?php /** * @package SureCartAppCore * @author SureCart <support@surecart.com> * @copyright SureCart * @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0 * @link https://surecart.com */ namespace SureCartAppCore\Image; use SureCartCore\ServiceProviders\ServiceProviderInterface; /** * Provide image dependencies. * * @codeCoverageIgnore */ class ImageServiceProvider implements ServiceProviderInterface { /** * {@inheritDoc} */ public function register( $container ) { $container['surecart_app_core.image.image'] = function() { return new Image(); }; } /** * {@inheritDoc} */ public function bootstrap( $container ) { // Nothing to bootstrap. } }
Save
Back