1234567891011121314151617181920212223242526272829303132333435 |
- <?php namespace App\Providers;
- use Illuminate\Support\ServiceProvider;
- class AppServiceProvider extends ServiceProvider {
-
- public function boot()
- {
-
- }
-
- public function register()
- {
- $this->app->bind(
- 'Illuminate\Contracts\Auth\Registrar',
- 'App\Services\Registrar'
- );
- }
- }
|