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:
ConsoleOutput:: get Dialog Helper () ConsoleOutput:: get Progress Helper () ConsoleOutput:: get Table Helper ()
The 2nd argument of the following methods is ignored now:
ConsoleOutput:: progress Advance () ConsoleOutput:: 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:
ConsoleOutput:: get Question Helper () ConsoleOutput:: get Progress Bar () ConsoleOutput:: get Table ()
Remove the 2nd argument when calling these methods:
ConsoleOutput:: progress Advance () ConsoleOutput:: progress Set ()