<?php
namespace Filament\Commands\Aliases;
use Filament\Commands;
use Symfony\Component\Console\Attribute\AsCommand;
#[AsCommand(name: 'filament:user')]
class MakeUserCommand extends Commands\MakeUserCommand
{
protected $hidden = true;
protected $signature = 'filament:user';
}