backup-manager / laravel

Driver to seamlessly integrate the Backup Manager into Laravel applications.
MIT License
655 stars 149 forks source link

Adjust table method declaration to match Illuminate\Console\Command::table #92

Closed fuelingtheweb closed 7 years ago

fuelingtheweb commented 7 years ago

Using this package with Laravel 5.5.13 produces the following error:

[ErrorException]
Declaration of BackupManager\Laravel\Laravel55Compatibility::table($headers, $rows, $style = 'default') 
should be compatible with 
Illuminate\Console\Command::table($headers, $rows, $tableStyle = 'default', array $columnStyles = Array)

This commit fixes this error by adjusting the method declaration to match Illuminate\Console\Command::table.

fuelingtheweb commented 7 years ago

Sorry, just noticed there's an open pull request for this already.