| Total Complexity | 3 | 
| Total Lines | 34 | 
| Duplicated Lines | 0 % | 
| Changes | 2 | ||
| Bugs | 1 | Features | 0 | 
| 1 | <?php  | 
            ||
| 9 | class OtpifyServiceProvider extends ServiceProvider  | 
            ||
| 10 | { | 
            ||
| 11 | /**  | 
            ||
| 12 | * Register services.  | 
            ||
| 13 | *  | 
            ||
| 14 | * @return void  | 
            ||
| 15 | */  | 
            ||
| 16 | public function register()  | 
            ||
| 17 |     { | 
            ||
| 18 |         $this->app->bind('Otpify', Otpify::class); | 
            ||
| 19 | }  | 
            ||
| 20 | |||
| 21 | /**  | 
            ||
| 22 | * Bootstrap services.  | 
            ||
| 23 | *  | 
            ||
| 24 | * @return void  | 
            ||
| 25 | */  | 
            ||
| 26 | public function boot()  | 
            ||
| 43 | }  | 
            ||
| 44 | }  | 
            ||
| 45 |