mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
30 lines
478 B
PHP
30 lines
478 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()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->singleton(LdapAd::class, LdapAd::class);
|
|
}
|
|
}
|