planiverse

A minimalist, no-JS front-end for Mastodon.
git clone https://git.stjo.hn/planiverse
Log | Files | Refs | README | LICENSE

AppServiceProvider.php (403B)


      1 <?php
      2 
      3 namespace App\Providers;
      4 
      5 use Illuminate\Support\ServiceProvider;
      6 
      7 class AppServiceProvider extends ServiceProvider
      8 {
      9     /**
     10      * Bootstrap any application services.
     11      *
     12      * @return void
     13      */
     14     public function boot()
     15     {
     16         //
     17     }
     18 
     19     /**
     20      * Register any application services.
     21      *
     22      * @return void
     23      */
     24     public function register()
     25     {
     26         //
     27     }
     28 }