PHP 8.3.31
Preview: Line.php Size: 1.58 KB
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Console/View/Components/Line.php

<?php

namespace Illuminate\Console\View\Components;

use Illuminate\Console\Contracts\NewLineAware;
use Symfony\Component\Console\Output\OutputInterface;

class Line extends Component
{
    /**
     * The possible line styles.
     *
     * @var array<string, array<string, string>>
     */
    protected static $styles = [
        'info' => [
            'bgColor' => 'blue',
            'fgColor' => 'white',
            'title' => 'info',
        ],
        'success' => [
            'bgColor' => 'green',
            'fgColor' => 'white',
            'title' => 'success',
        ],
        'warn' => [
            'bgColor' => 'yellow',
            'fgColor' => 'black',
            'title' => 'warn',
        ],
        'error' => [
            'bgColor' => 'red',
            'fgColor' => 'white',
            'title' => 'error',
        ],
    ];

    /**
     * Renders the component using the given arguments.
     *
     * @param  string  $style
     * @param  string  $string
     * @param  int  $verbosity
     * @return void
     */
    public function render($style, $string, $verbosity = OutputInterface::VERBOSITY_NORMAL)
    {
        $string = $this->mutate($string, [
            Mutators\EnsureDynamicContentIsHighlighted::class,
            Mutators\EnsurePunctuation::class,
            Mutators\EnsureRelativePaths::class,
        ]);

        $this->renderView('line', array_merge(static::$styles[$style], [
            'marginTop' => $this->output instanceof NewLineAware ? max(0, 2 - $this->output->newLinesWritten()) : 1,
            'content' => $string,
        ]), $verbosity);
    }
}

Directory Contents

Dirs: 1 × Files: 16

Name Size Perms Modified Actions
Mutators DIR
- drwxrwxrwx 2025-09-17 06:52:57
Edit Download
710 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
636 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
751 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
746 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
1.37 KB lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
2.91 KB lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
440 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
477 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
2.64 KB lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
475 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
1.58 KB lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
575 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
481 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
1.81 KB lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
1.00 KB lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
488 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).