for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Containers\Settings\Providers;
use App\Port\Provider\Abstracts\ServiceProviderAbstract;
/**
* Class MainServiceProvider.
*
* The Main Service Provider of this container, it will be automatically registered in the framework.
* @author Mahmoud Zalt <[email protected]>
*/
class MainServiceProvider extends ServiceProviderAbstract
{
* Indicates if loading of the provider is deferred.
* @var bool
protected $defer = false;
* Container Service Providers.
* @var array
public $containerServiceProviders = [
];
* Container Aliases
public $containerAliases = [
* Perform post-registration booting of services.
public function boot()
$this->loadContainersInternalProviders();
}
* Register anything in the container.
public function register()
$this->loadContainersInternalAliases();