Completed
Push — master ( 5d4822...d1d02b )
by Maik
01:58
created
src/Generics/Client/HttpClient.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -471,15 +471,15 @@
 block discarded – undo
471 471
      */
472 472
     public function isOpen()
473 473
     {
474
-    	return true;
474
+        return true;
475 475
     }
476 476
     
477 477
     /**
478 478
      * {@inheritDoc}
479 479
      * @see \Generics\Resettable::reset()
480 480
      */
481
-	public function reset()
482
-	{
483
-		$this->payload->reset();
484
-	}
481
+    public function reset()
482
+    {
483
+        $this->payload->reset();
484
+    }
485 485
 }
Please login to merge, or discard this patch.
src/Generics/Util/Arrays.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,6 +37,6 @@
 block discarded – undo
37 37
      */
38 38
     public static function hasElement(array $array, $element):bool
39 39
     {
40
-    	return isset($array[$element]) && strlen($array[$element]) > 0;
40
+        return isset($array[$element]) && strlen($array[$element]) > 0;
41 41
     }
42 42
 }
Please login to merge, or discard this patch.