for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebnetFr\DatabaseAnonymizer\ConfigGuesser;
/**
* @author Vlad Riabchenko <[email protected]>
*/
class ConfigGuesserHint
{
* @var string
public $formatter;
* @var string[]
public $words;
* @var array
public $arguments;
* @var bool
public $date;
public $unique;
public $locale;
* @param string $formatter
public function __construct(string $formatter)
$this->formatter = $formatter;
}
* Set words.
*
* @param string[] $words
* @return $this
public function words(array $words)
$this->words = $words;
return $this;
* Set arguments.
* @param array $arguments
public function arguments(array $arguments)
$this->arguments = $arguments;
* Set date.
* @param bool $date
public function date(bool $date)
$this->date = $date;
* Set unique.
* @param bool $unique
public function unique(bool $unique)
$this->unique = $unique;
* Set locale.
* @param string $locale
public function locale(string $locale)
$this->locale = $locale;