Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Console
/
View
/
Components
/
Mutators
:
EnsureDynamicContentIsHighlighted.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Illuminate\Console\View\Components\Mutators; class EnsureDynamicContentIsHighlighted { /** * Highlight dynamic content within the given string. * * @param string $string * @return string */ public function __invoke($string) { return preg_replace('/\[([^\]]+)\]/', '<options=bold>[$1]</>', (string) $string); } }