1b2e77d907
- Replace Facade references using the global namespace with their FQCN for improved code completion and static analysis. - delete database\factories\PageFactory.php and app\services\Registrar.php
46 lines
775 B
PHP
46 lines
775 B
PHP
<?php
|
|
/**
|
|
* Visual Studio Code.
|
|
* User: kaiarn
|
|
* Date: 19.02.21
|
|
*/
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Tethys\Utils\DoiClient;
|
|
use App\Interfaces\DoiInterface;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class DoiServiceProvider extends ServiceProvider
|
|
{
|
|
protected $defer = true;
|
|
|
|
/**
|
|
* Bootstrap the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Register the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
$this->app->singleton(\App\Interfaces\DoiInterface::class, function ($app) {
|
|
return new DoiClient();
|
|
});
|
|
}
|
|
|
|
public function provides()
|
|
{
|
|
return [DoiClient::class];
|
|
}
|
|
}
|