PATH:
home
/
lab2454c
/
netxzero.com
/
carbon-credit
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Support
<?php namespace Illuminate\Support; class AggregateServiceProvider extends ServiceProvider { /** * The provider class names. * * @var array */ protected $providers = []; /** * An array of the service provider instances. * * @var array */ protected $instances = []; /** * Register the service provider. * * @return void */ public function register() { $this->instances = []; foreach ($this->providers as $provider) { $this->instances[] = $this->app->register($provider); } } /** * Get the services provided by the provider. * * @return array */ public function provides() { $provides = []; foreach ($this->providers as $provider) { $instance = $this->app->resolveProvider($provider); $provides = array_merge($provides, $instance->provides()); } return $provides; } }
[-] ConfigurationUrlParser.php
[edit]
[-] composer.json
[edit]
[-] Pluralizer.php
[edit]
[-] ViewErrorBag.php
[edit]
[-] Manager.php
[edit]
[-] MessageBag.php
[edit]
[+]
..
[-] ValidatedInput.php
[edit]
[-] Composer.php
[edit]
[-] ServiceProvider.php
[edit]
[-] DateFactory.php
[edit]
[-] ProcessUtils.php
[edit]
[-] Js.php
[edit]
[-] InteractsWithTime.php
[edit]
[-] MultipleInstanceManager.php
[edit]
[-] AggregateServiceProvider.php
[edit]
[-] Str.php
[edit]
[-] LICENSE.md
[edit]
[-] helpers.php
[edit]
[+]
Facades
[-] Carbon.php
[edit]
[-] Optional.php
[edit]
[-] Reflector.php
[edit]
[+]
Testing
[+]
Traits
[-] Fluent.php
[edit]
[-] Stringable.php
[edit]
[-] Env.php
[edit]
[-] NamespacedItemResolver.php
[edit]
[-] HtmlString.php
[edit]
[-] HigherOrderTapProxy.php
[edit]