%PDF- %PDF-
Direktori : /var/www/html/kpk/api/vendor/arcanedev/support/src/ |
Current File : /var/www/html/kpk/api/vendor/arcanedev/support/src/Manager.php |
<?php namespace Arcanedev\Support; use Illuminate\Contracts\Foundation\Application; use Illuminate\Support\Manager as IlluminateManager; use Illuminate\Support\Str; use InvalidArgumentException; /** * Class Manager * * @package Arcanedev\Support * @author ARCANEDEV <arcanedev.maroc@gmail.com> */ abstract class Manager extends IlluminateManager { /* ------------------------------------------------------------------------------------------------ | Constructor | ------------------------------------------------------------------------------------------------ */ /** * Manager constructor. * * @param \Illuminate\Contracts\Foundation\Application $app */ public function __construct(Application $app) { parent::__construct($app); } /* ------------------------------------------------------------------------------------------------ | Main Functions | ------------------------------------------------------------------------------------------------ */ /** * Create a new driver instance. * * @param string $driver * * @return mixed */ protected function createDriver($driver) { $method = 'create'.Str::studly($driver).'Driver'; // We'll check to see if a creator method exists for the given driver. If not we // will check for a custom driver creator, which allows developers to create // drivers using their own customized driver creator Closure to create it. if (isset($this->customCreators[$driver])) return $this->callCustomCreator($driver); elseif (method_exists($this, $method)) return $this->$method(); throw new InvalidArgumentException("Driver [$driver] not supported."); } }