File "DiscoverCommand.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Commands/DiscoverCommand.php
File size: 450 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\Commands;
use Illuminate\Console\Command;
use Livewire\LivewireComponentsFinder;
class DiscoverCommand extends Command
{
protected $signature = 'livewire:discover';
protected $description = 'Regenerate Livewire component auto-discovery manifest';
public function handle()
{
app(LivewireComponentsFinder::class)->build();
$this->info('Livewire auto-discovery manifest rebuilt!');
}
}