Файл: vendor/laravel/framework/src/Illuminate/Console/View/Components/TwoColumnDetail.php
Строк: 55
<?php
namespace IlluminateConsoleViewComponents;
use SymfonyComponentConsoleOutputOutputInterface;
class TwoColumnDetail extends Component
{
/**
* Renders the component using the given arguments.
*
* @param string $first
* @param string|null $second
* @param int $verbosity
* @return void
*/
public function render($first, $second = null, $verbosity = OutputInterface::VERBOSITY_NORMAL)
{
$first = $this->mutate($first, [
MutatorsEnsureDynamicContentIsHighlighted::class,
MutatorsEnsureNoPunctuation::class,
MutatorsEnsureRelativePaths::class,
]);
$second = $this->mutate($second, [
MutatorsEnsureDynamicContentIsHighlighted::class,
MutatorsEnsureNoPunctuation::class,
MutatorsEnsureRelativePaths::class,
]);
$this->renderView('two-column-detail', [
'first' => $first,
'second' => $second,
], $verbosity);
}
}