%PDF- %PDF-
Direktori : /home/silvzytp/calling_code/vendor/nunomaduro/termwind/src/Laravel/ |
Current File : //home/silvzytp/calling_code/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()); }); } }