Completed
Branch master (3c32ca)
by Kazi Mainuddin
03:02
created
Category
src/GoogleUrlShortener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     {
83 83
         $response = $this->getShorternerResponse($longUrl);
84 84
         dd($response);
85
-        if (! $this->extended) {
85
+        if (!$this->extended) {
86 86
             self::$buffer[$longUrl] = $response->id;
87 87
         }
88 88
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      */
113 113
     private function getShorternerResponse($longUrl)
114 114
     {
115
-        if (!$this->extended && !empty(self::$buffer[$longUrl]) ) {
115
+        if (!$this->extended && !empty(self::$buffer[$longUrl])) {
116 116
             return self::$buffer[$longUrl];
117 117
         }
118 118
 
Please login to merge, or discard this patch.