Commit d6fe6e97 authored by Stephane Bouvry's avatar Stephane Bouvry
Browse files

FIX : Compatibilité 7.3

parent a7b09e99
Loading
Loading
Loading
Loading
Loading
+3 −3
Changes for module/Oscar/src/Oscar/Command/OscarAdvancedCommandAbstract.php: 3 added lines, 3 removed lines.
Original line number Diff line number Diff line
@@ -25,13 +25,13 @@ abstract class OscarAdvancedCommandAbstract extends OscarCommandAbstract
    const OPTION_VERBOSE = 'verbose';

    /** @var InputInterface */
    private InputInterface $input;
    private $input;

    /** @var OutputInterface */
    private OutputInterface $output;
    private $output;

    /** @var SymfonyStyle */
    private SymfonyStyle $io;
    private $io;

    protected function configure()
    {