Browse code

initial-commit

rcraig12 authored on 11/11/2018 19:37:45
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,28 @@
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
+}