@@ -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()) { |
@@ -45,6 +45,6 @@ |
||
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 | } |