Passed
Push — master ( e65bc8...3bb10f )
by
unknown
17:18 queued 09:44
created
tests/PhpSpreadsheetTests/Reader/Xlsx/HyperlinkTest.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -55,13 +55,13 @@
 block discarded – undo
55 55
         $rsheet2 = $reloadedSpreadsheet->getSheet(1);
56 56
         self::assertSame('link to other sheet', $rsheet2->getCell('A2')->getValue());
57 57
         self::assertSame("sheet://'Sheet One'!A1", $rsheet2->getCell('A2')->getHyperlink()->getUrl());
58
-         self::assertSame(
59
-             'FF0000FF',
60
-             $rsheet2
61
-                 ->getStyle('A2')
62
-                 ->getFont()->getColor()->getARGB(),
63
-             'argb is set in addition to theme'
64
-         );
58
+            self::assertSame(
59
+                'FF0000FF',
60
+                $rsheet2
61
+                    ->getStyle('A2')
62
+                    ->getFont()->getColor()->getARGB(),
63
+                'argb is set in addition to theme'
64
+            );
65 65
 
66 66
         self::assertSame('external link', $rsheet2->getCell('A3')->getValue());
67 67
         self::assertSame('https://www.example.com', $rsheet2->getCell('A3')->getHyperlink()->getUrl());
Please login to merge, or discard this patch.