Completed
Push — master ( 8ee532...4e618e )
by Jeroen
15s queued 10s
created
src/FlickrServiceProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function register()
21 21
     {
22
-        $this->app->singleton('flickr', function ($app) {
22
+        $this->app->singleton('flickr', function($app) {
23 23
             $api = new Api(config('services.flickr.key', env('FLICKR_KEY')));
24 24
 
25 25
             return new Flickr($api);
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -9,16 +9,14 @@  discard block
 block discarded – undo
9 9
     /**
10 10
      * Perform post-registration booting of services.
11 11
      */
12
-    public function boot()
13
-    {
12
+    public function boot() {
14 13
         //
15 14
     }
16 15
 
17 16
     /**
18 17
      * Register any package services.
19 18
      */
20
-    public function register()
21
-    {
19
+    public function register() {
22 20
         $this->app->singleton('flickr', function ($app) {
23 21
             $api = new Api(config('services.flickr.key', env('FLICKR_KEY')));
24 22
 
@@ -31,8 +29,7 @@  discard block
 block discarded – undo
31 29
      *
32 30
      * @return array
33 31
      */
34
-    public function provides()
35
-    {
32
+    public function provides() {
36 33
         return ['flickr'];
37 34
     }
38 35
 }
Please login to merge, or discard this patch.