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