for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helldar\LaravelLangPublisher\Support\Actions;
use Helldar\LaravelLangPublisher\Concerns\Logger;
use Helldar\LaravelLangPublisher\Contracts\Actionable;
use Helldar\Support\Facades\Helpers\Str;
abstract class Action implements Actionable
{
use Logger;
protected function text(string $value, bool $as_title = false): string
$this->log('Convert text to TitleCase: ' . $value . '.');
return $as_title ? Str::title($value) : $value;
return $as_title ? Helld...:title($value) : $value
null
string
}