Файл vendor/laravel/framework/src/Illuminate/Console/View/Components/Mutators/EnsurePunctuation.php Вес запакованого файла 232b (232 b) Вес распакованого файла: 400b (400 b) Метод сжатия: 8
<?php
namespace Illuminate\Console\View\Components\Mutators;
class EnsurePunctuation
{
/**
* Ensures the given string ends with punctuation.
*
* @param string $string
* @return string
*/
public function __invoke($string)
{
if (! str($string)->endsWith(['.', '?', '!', ':'])) {
return "$string.";
}
return $string;
}
}