Interface CommandHiddenInterface
Marker interface for commands that should be hidden from the help output and shell completion while remaining fully executable.
Example
use Cake\Command\Command;
use Cake\Console\CommandHiddenInterface;
class InternalMaintenanceCommand extends Command implements CommandHiddenInterface
{
// Command implementation
}
Namespace: Cake\Console