Completed
Push — master ( 410157...783147 )
by Martin
01:51
created
src/TableParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
             return false;
53 53
         }
54 54
 
55
-        $table = new Table(function (Cursor $cursor, Table $table) use ($columns): bool {
55
+        $table = new Table(function(Cursor $cursor, Table $table) use ($columns): bool {
56 56
             $row = $this->parseRow($cursor->getLine(), $columns);
57 57
             if (null === $row) {
58 58
                 if (null !== $table->getCaption()) {
Please login to merge, or discard this patch.
src/TableRow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,6 +45,6 @@
 block discarded – undo
45 45
      */
46 46
     public function children(): iterable
47 47
     {
48
-        return array_filter((array) parent::children(), static function (Node $child): bool { return $child instanceof AbstractBlock; });
48
+        return array_filter((array) parent::children(), static function(Node $child): bool { return $child instanceof AbstractBlock; });
49 49
     }
50 50
 }
Please login to merge, or discard this patch.