mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-31 01:34:09 +02:00
21 lines
453 B
PHP
21 lines
453 B
PHP
<?php
|
|
|
|
/* Icinga Web 2 | (c) 2021 Icinga GmbH | GPLv2+ */
|
|
|
|
namespace Icinga\Module\Migrate\Clicommands;
|
|
|
|
use Icinga\Application\Logger;
|
|
use Icinga\Cli\Command;
|
|
|
|
class NavigationCommand extends Command
|
|
{
|
|
/**
|
|
* Deprecated. Use `icingacli icingadb migrate navigation` instead.
|
|
*/
|
|
public function indexAction(): void
|
|
{
|
|
Logger::error('Deprecated. Use `icingacli icingadb migrate navigation` instead.');
|
|
exit(1);
|
|
}
|
|
}
|