We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffb1772 commit 2bf5a8bCopy full SHA for 2bf5a8b
src/ThepeerServiceProvider.php
@@ -0,0 +1,36 @@
1
+<?php
2
+
3
+namespace Thepeer\Sdk;
4
5
+use Illuminate\Support\ServiceProvider;
6
7
+class ThepeerServiceProvider extends ServiceProvider
8
+{
9
+ /**
10
+ * Register the application services.
11
+ */
12
+ public function register()
13
+ {
14
+ $this->app->bind('laravel-thepeer', function () {
15
+ return new Thepeer;
16
+ });
17
+ }
18
19
20
+ * Get the services provided by the provider
21
+ * @return array
22
23
+ public function provides()
24
25
+ return ['laravel-thepeer'];
26
27
28
29
+ * Bootstrap any application services.
30
+ *
31
+ * @return void
32
33
+ public function boot()
34
35
36
+}
0 commit comments