File manager - Edit - /home/linknsbh/linkat.online/vendor/cartalyst/stripe-laravel/src/StripeServiceProvider.php
Back
<?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 14.0.0 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2022, 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); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 1.89 |
proxy
|
phpinfo
|
Settings