mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 09:34:10 -08:00
30 lines
470 B
PHP
30 lines
470 B
PHP
|
<?php namespace App\Providers;
|
||
|
|
||
|
use App\Services\LdapAd;
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class LdapServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Bootstrap the application services.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function boot()
|
||
|
{
|
||
|
$this->app->singleton(LdapAd::class, LdapAd::class);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Register any application services.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function register()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|