Passed
Push — master ( 52741a...aac4a9 )
by Markus
05:54 queued 03:40
created
src/Formatter/SeqBaseFormatter.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,9 +48,9 @@
 block discarded – undo
48 48
      * @param  Throwable $e The throwable instance to normalize.
49 49
      * @return string
50 50
      */
51
-	protected function normalizeException($e) : string
51
+    protected function normalizeException($e) : string
52 52
     {
53
-   		$previousText = '';
53
+            $previousText = '';
54 54
         if ($previous = $e->getPrevious()) {
55 55
             do {
56 56
                 $previousText .= ', ' . get_class($previous) . '(code: ' . $previous->getCode() . '): ' . $previous->getMessage() . ' at ' . $previous->getFile() . ':' . $previous->getLine();
Please login to merge, or discard this patch.
src/Formatter/SeqCompactJsonFormatter.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,13 +43,13 @@
 block discarded – undo
43 43
      * @param  bool $extractExtras  Flag that indicates whether to extract the context array
44 44
      *                              to the root or not.
45 45
      */
46
-	public function __construct(bool $extractContext = true, bool $extractExtras = true)
47
-	{
46
+    public function __construct(bool $extractContext = true, bool $extractExtras = true)
47
+    {
48 48
         $this->extractContext = $extractContext;
49 49
         $this->extractExtras = $extractExtras;
50 50
 
51 51
         parent::__construct(JsonFormatter::BATCH_MODE_NEWLINES);
52
-	}
52
+    }
53 53
 
54 54
     /**
55 55
      * Returns a string with the content type for the seq-formatter.
Please login to merge, or discard this patch.
src/Exception/InvalidCodePathException.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
  */
15 15
 class InvalidCodePathException extends Exception
16 16
 {
17
-	public function __construct()
18
-	{
19
-		parent::__construct('Invalid code path!');
20
-	}
17
+    public function __construct()
18
+    {
19
+        parent::__construct('Invalid code path!');
20
+    }
21 21
 }
22 22
\ No newline at end of file
Please login to merge, or discard this patch.