We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5907f83 commit f96bcd2Copy full SHA for f96bcd2
src/TableDefinitions/TableDefinition.php
@@ -41,9 +41,9 @@ public function query(callable $callable)
41
$this->query = $callable;
42
}
43
44
- public function mask(string $column)
+ public function mask(string $column, string $maskCharacter = 'x')
45
{
46
- $this->columns[$column] = ColumnDefinition::mask($column);
+ $this->columns[$column] = ColumnDefinition::mask($column, $maskCharacter);
47
48
return $this;
49
0 commit comments