FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
core
/
core
/
src
/
Application
Edit File: GenericFactory.php
<?php /** * @package SureCartCore * @author SureCart <support@surecart.com> * @copyright 2017-2019 SureCart * @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0 * @link https://surecart.com/ */ namespace SureCartCore\Application; use SureCartVendors\Pimple\Container; use SureCartCore\Exceptions\ClassNotFoundException; /** * Generic class instance factory. */ class GenericFactory { /** * Container. * * @var Container */ protected $container = null; /** * Constructor. * * @codeCoverageIgnore * @param Container $container */ public function __construct( Container $container ) { $this->container = $container; } /** * Make a class instance. * * @throws ClassNotFoundException * @param string $class * @return object */ public function make( $class ) { if ( isset( $this->container[ $class ] ) ) { return $this->container[ $class ]; } if ( ! class_exists( $class ) ) { throw new ClassNotFoundException( 'Class not found: ' . $class ); } return new $class(); } }
Save
Back