Skip to content

Commit c19c4c4

Browse files
author
Shawn McCool
committed
Update BaseCommand.php
fix laravel 4 compat
1 parent 3b65b98 commit c19c4c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BaseCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function autocomplete($dialog, array $list, $default = null) {
3535
* @internal param string $style
3636
* @return void
3737
*/
38-
public function table(array $headers, $rows, $style = 'default') {
38+
public function table(array $headers, array $rows, $style = 'default') {
3939
$table = $this->getHelperSet()->get('table');
4040
$table->setHeaders($headers);
4141
$table->setRows($rows);

0 commit comments

Comments
 (0)