for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helldar\LaravelLangPublisher\Support\Actions;
final class Update extends Action
{
public function future(bool $as_title = false): string
$this->log('Convert text to TitleCase for ' . __FUNCTION__);
return $this->text('update', $as_title);
}
public function present(bool $as_title = false): string
return $this->text('updating', $as_title);
public function past(bool $as_title = false): string
return $this->text('updated', $as_title);