You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By trying to upgrade to L5.2 artisan clear-compiled returns errors like this
Declaration of Potsky\LaravelLocalizationHelpers\Commands\LocalizationAbstract::info()
should be compatible with Illuminate\Console\Command::info($string, $verbosity = NULL)
The errors can be fixed by changing declarations to:
public function line( $s , $style = NULL, $verbosity = NULL) {...
public function info( $s , $verbosity = NULL) {...
public function comment( $s , $verbosity = NULL ) {...
public function question( $s , $verbosity = NULL) {...
The text was updated successfully, but these errors were encountered:
imagra
changed the title
upgrade declaration of info to Laravel 5.2
upgrade declarations to Laravel 5.2
Dec 25, 2015
By trying to upgrade to L5.2
artisan clear-compiled
returns errors like thisThe errors can be fixed by changing declarations to:
The text was updated successfully, but these errors were encountered: