The constructor of the Converter class declares the $launch_args to be of type array (see here), but the subsequent method setLaunchOptions expects the variable to be of type object (see here).
Thus the $launch_args are not usable when instancing a Converter.
The constructor of the
Converter
class declares the$launch_args
to be of typearray
(see here), but the subsequent methodsetLaunchOptions
expects the variable to be of typeobject
(see here).Thus the
$launch_args
are not usable when instancing aConverter
.