We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab44ee3 commit bc28236Copy full SHA for bc28236
lib/cli/table/Ascii.php
@@ -198,7 +198,7 @@ public function row( array $row ) {
198
}
199
200
private function padColumn($content, $column) {
201
- $content = str_replace( "\t", ' ', $content );
+ $content = str_replace( "\t", ' ', (string) $content );
202
return $this->_characters['padding'] . Colors::pad( $content, $this->_widths[ $column ], $this->isPreColorized( $column ) ) . $this->_characters['padding'];
203
204
0 commit comments