Breaking: #73152 - Symfony console helpers replaced
See forge#73152
Description
By upgrading to Symfony Console 3.x the Dialog, Progress and
Table have been replaced. The internal getter methods for these classes
have been replaced in Extbase Console.
Impact
Calling the following methods with result in a fatal error:
- Console- Output:: - get - Dialog - Helper - () 
- Console- Output:: - get - Progress - Helper - () 
- Console- Output:: - get - Table - Helper - () 
The 2nd argument of the following methods is ignored now:
- Console- Output:: - progress - Advance - () 
- Console- Output:: - progress - Set - () 
Affected Installations
Extensions which have directly called these methods in favor of the Extbase
Console helper methods.
Migration
Use the following methods instead:
- Console- Output:: - get - Question - Helper - () 
- Console- Output:: - get - Progress - Bar - () 
- Console- Output:: - get - Table - () 
Remove the 2nd argument when calling these methods:
- Console- Output:: - progress - Advance - () 
- Console- Output:: - progress - Set - ()