/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
cartalyst
/
stripe-laravel
/
src
/
/home/techb158/ileadtechnology.com/vendor/cartalyst/stripe-laravel/src
mkdir
upload
Name
Size
Mode
Actions
Facades/
-
0755
rm
StripeServiceProvider.php
1841
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/cartalyst/stripe-laravel/src/StripeServiceProvider.php
(1841B)
<?php /* * Part of the Stripe Laravel package. * * NOTICE OF LICENSE * * Licensed under the 3-clause BSD License. * * This source file is subject to the 3-clause BSD License that is * bundled with this package in the LICENSE file. * * @package Stripe Laravel * @version 12.0.0 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC * @link https://cartalyst.com */ namespace Cartalyst\Stripe\Laravel; use Cartalyst\Stripe\Config; use Cartalyst\Stripe\Stripe; use Cartalyst\Stripe\ConfigInterface; use Illuminate\Support\ServiceProvider; class StripeServiceProvider extends ServiceProvider { /** * {@inheritdoc} */ public function register() { $this->registerStripe(); $this->registerConfig(); } /** * {@inheritdoc} */ public function provides() { return [ 'stripe', 'stripe.config', ]; } /** * Register the Stripe API class. * * @return void */ protected function registerStripe() { $this->app->singleton('stripe', function ($app) { $config = $app['config']->get('services.stripe'); $secret = $config['secret'] ?? null; $version = $config['version'] ?? null; return new Stripe($secret, $version); }); $this->app->alias('stripe', Stripe::class); } /** * Register the config class. * * @return void */ protected function registerConfig() { $this->app->singleton('stripe.config', function ($app) { return $app['stripe']->getConfig(); }); $this->app->alias('stripe.config', Config::class); $this->app->alias('stripe.config', ConfigInterface::class); } }
Save
cmd:
run