JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "DiscoverCommand.php"

Full Path: /var/www/lionsclub/core/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!');
    }
}