Completed
Push — master ( 94bc98...2d9023 )
by Martin
09:18
created
src/TableCaption.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,6 +56,6 @@
 block discarded – undo
56 56
      */
57 57
     public function children(): array
58 58
     {
59
-        return array_filter(parent::children(), function (Node $child): bool { return $child instanceof AbstractInline; });
59
+        return array_filter(parent::children(), function(Node $child): bool { return $child instanceof AbstractInline; });
60 60
     }
61 61
 }
Please login to merge, or discard this patch.
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/TableCell.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,6 +70,6 @@
 block discarded – undo
70 70
      */
71 71
     public function children(): array
72 72
     {
73
-        return array_filter(parent::children(), function (Node $child): bool { return $child instanceof AbstractInline; });
73
+        return array_filter(parent::children(), function(Node $child): bool { return $child instanceof AbstractInline; });
74 74
     }
75 75
 }
Please login to merge, or discard this patch.
src/Table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,6 +91,6 @@
 block discarded – undo
91 91
      */
92 92
     public function children(): array
93 93
     {
94
-        return array_filter(parent::children(), function (Node $child): bool { return $child instanceof AbstractBlock; });
94
+        return array_filter(parent::children(), function(Node $child): bool { return $child instanceof AbstractBlock; });
95 95
     }
96 96
 }
Please login to merge, or discard this patch.
src/TableRows.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,6 +71,6 @@
 block discarded – undo
71 71
      */
72 72
     public function children(): array
73 73
     {
74
-        return array_filter(parent::children(), function (Node $child): bool { return $child instanceof AbstractBlock; });
74
+        return array_filter(parent::children(), function(Node $child): bool { return $child instanceof AbstractBlock; });
75 75
     }
76 76
 }
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
@@ -50,6 +50,6 @@
 block discarded – undo
50 50
      */
51 51
     public function children(): array
52 52
     {
53
-        return array_filter(parent::children(), function (Node $child): bool { return $child instanceof AbstractBlock; });
53
+        return array_filter(parent::children(), function(Node $child): bool { return $child instanceof AbstractBlock; });
54 54
     }
55 55
 }
Please login to merge, or discard this patch.