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 eda76e9 commit f6bd785Copy full SHA for f6bd785
src/UniqueTranslationRule.php
@@ -10,24 +10,32 @@ class UniqueTranslationRule
10
protected $rule = 'unique_translation';
11
12
/**
13
+ * The table to run the query against.
14
+ *
15
* @var string
16
*/
17
protected $table;
18
19
20
+ * The column to check on.
21
22
* @var string|null
23
- protected $column = null;
24
+ protected $column;
25
26
27
+ * The value of the the 'ignoreColumn' to ignore.
28
29
* @var mixed
30
- protected $ignoreValue = null;
31
+ protected $ignoreValue;
32
33
34
+ * The name of the 'ignoreColumn'.
35
36
37
- protected $ignoreColumn = null;
38
+ protected $ignoreColumn;
39
40
41
* Create a new rule instance.
0 commit comments