blob: 28ae8a11acd6c587e42bd8ec8e7a708e87d68bb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?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);
}
}
|