Page MenuHomeDevCentral

AppServiceProvider.php
No OneTemporary

AppServiceProvider.php

<?php namespace AuthGrove\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider {
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register any application services.
*
* This service provider is a great spot to register your various container
* bindings with the application. As you can see, we are registering our
* "Registrar" implementation here. You can add your own bindings too!
*
* @return void
*/
public function register()
{
$this->app->bind(
'Illuminate\Contracts\Auth\Registrar',
'AuthGrove\Services\Registrar'
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Dec 17, 10:19 (5 h, 57 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3250367
Default Alt Text
AppServiceProvider.php (673 B)

Event Timeline