2021-10-20 07:16:43 -04:00
|
|
|
<?php
|
|
|
|
|
|
2026-03-26 12:46:27 -04:00
|
|
|
// SPDX-FileCopyrightText: 2021 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2021-11-03 11:38:58 -04:00
|
|
|
|
2021-10-20 07:16:43 -04:00
|
|
|
namespace Icinga\Module\Migrate\Clicommands;
|
|
|
|
|
|
|
|
|
|
use Icinga\Application\Logger;
|
|
|
|
|
use Icinga\Cli\Command;
|
|
|
|
|
|
|
|
|
|
class NavigationCommand extends Command
|
|
|
|
|
{
|
|
|
|
|
/**
|
2023-11-10 09:52:09 -05:00
|
|
|
* Deprecated. Use `icingacli icingadb migrate navigation` instead.
|
2021-10-20 07:16:43 -04:00
|
|
|
*/
|
2023-11-10 09:52:09 -05:00
|
|
|
public function indexAction(): void
|
2021-10-20 07:16:43 -04:00
|
|
|
{
|
2023-11-10 09:52:09 -05:00
|
|
|
Logger::error('Deprecated. Use `icingacli icingadb migrate navigation` instead.');
|
|
|
|
|
exit(1);
|
2021-10-20 07:16:43 -04:00
|
|
|
}
|
|
|
|
|
}
|