Archived
1
0
Fork 0
This repository has been archived on 2021-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
ifnews/app/Providers/AppServiceProvider.php

29 lines
343 B
PHP
Raw Normal View History

2019-09-12 18:31:50 +03:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
2019-09-12 20:03:56 +03:00
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
2019-09-12 18:31:50 +03:00
2019-09-12 20:03:56 +03:00
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
2019-09-12 18:31:50 +03:00
}