33/**
44 * This file is part of the Sclable Xml Lint Package.
55 *
6- * @copyright (c) 2022 Sclable Business Solutions GmbH
6+ * @copyright (c) 2025 Sclable Business Solutions GmbH
77 *
88 * For the full copyright and license information, please view the LICENSE
99 * file that was distributed with this source code.
2525 */
2626class Application extends \Symfony \Component \Console \Application
2727{
28- const VERSION = 'dev ' ;
29- const NAME = 'Sclable Xml Lint ' ;
28+ public const VERSION = 'dev ' ;
29+ public const NAME = 'Sclable Xml Lint ' ;
3030
31- /**
32- * {@inheritdoc}
33- */
3431 public function __construct ($ name = 'UNKNOWN ' , $ version = 'UNKNOWN ' )
3532 {
3633 $ name = self ::NAME ;
@@ -39,9 +36,6 @@ public function __construct($name = 'UNKNOWN', $version = 'UNKNOWN')
3936 $ this ->setDefaultCommand (LintCommand::COMMAND_NAME );
4037 }
4138
42- /**
43- * {@inheritdoc}
44- */
4539 protected function getDefaultCommands (): array
4640 {
4741 parent ::getDefaultCommands ();
@@ -53,8 +47,6 @@ protected function getDefaultCommands(): array
5347 }
5448
5549 /**
56- * {@inheritdoc}
57- *
5850 * @SuppressWarnings(PHPMD.Superglobals)
5951 */
6052 public function run (?InputInterface $ input = null , ?OutputInterface $ output = null ): int
@@ -71,9 +63,6 @@ public function run(?InputInterface $input = null, ?OutputInterface $output = nu
7163 return parent ::run ($ input , $ output );
7264 }
7365
74- /**
75- * {@inheritdoc}
76- */
7766 protected function doRunCommand (Command $ command , InputInterface $ input , OutputInterface $ output ): int
7867 {
7968 if ('version ' != $ command ->getName ()) {
0 commit comments