Completed
Push — master ( 0aa78c...a32edd )
by Kazi Mainuddin
02:14
created
src/GoogleUrlShortener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
     public function shorten($longUrl)
82 82
     {
83 83
         $response = $this->getShorternerResponse($longUrl);
84
-        if (! $this->extended) {
84
+        if (!$this->extended) {
85 85
             self::$buffer[$longUrl] = $response->id;
86 86
         }
87 87
 
Please login to merge, or discard this patch.
src/Provider/ShortenUrlServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function boot()
16 16
     {
17
-        $this->app->singleton('tzsk-shorten-url', function ($app) {
17
+        $this->app->singleton('tzsk-shorten-url', function($app) {
18 18
             return new GoogleUrlShortener($app);
19 19
         });
20 20
 
Please login to merge, or discard this patch.