Skip to content

Commit f77cb47

Browse files
committed
Remove unnecessary cast
1 parent 95c9cce commit f77cb47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Components/Blocks/Table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ public function advance(Context $Context, State $State)
115115
return null;
116116
}
117117

118-
$cells = \array_values(\array_map(
118+
$cells = \array_map(
119119
'trim',
120120
\array_slice($matches[0], 0, \count($this->alignments))
121-
));
121+
);
122122

123123
return new self(
124124
$this->alignments,

0 commit comments

Comments
 (0)