Your IP : 18.191.37.129


Current Path : /home/lentoinv/api.lentoria.com/vendor/nunomaduro/termwind/src/Laravel/
Upload File :
Current File : //home/lentoinv/api.lentoria.com/vendor/nunomaduro/termwind/src/Laravel/TermwindServiceProvider.php

<?php

declare(strict_types=1);

namespace Termwind\Laravel;

use Illuminate\Console\OutputStyle;
use Illuminate\Support\ServiceProvider;
use Termwind\Termwind;

final class TermwindServiceProvider extends ServiceProvider
{
    /**
     * Sets the correct renderer to be used.
     */
    public function register(): void
    {
        $this->app->resolving(OutputStyle::class, function ($style): void {
            Termwind::renderUsing($style->getOutput());
        });
    }
}

?>