@@ -56,6 +56,6 @@ |
||
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 | } |
@@ -52,7 +52,7 @@ |
||
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()) { |
@@ -70,6 +70,6 @@ |
||
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 | } |
@@ -91,6 +91,6 @@ |
||
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 | } |
@@ -71,6 +71,6 @@ |
||
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 | } |
@@ -50,6 +50,6 @@ |
||
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 | } |