We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5f24d15 + 7210926 commit a8e823fCopy full SHA for a8e823f
1 file changed
src/ValidatingTrait.php
@@ -62,7 +62,7 @@ public function getValidating()
62
*/
63
public function setValidating($value)
64
{
65
- $this->validating = (boolean) $value;
+ $this->validating = (bool) $value;
66
}
67
68
/**
@@ -86,7 +86,7 @@ public function getThrowValidationExceptions()
86
87
public function setThrowValidationExceptions($value)
88
89
- $this->throwValidationExceptions = (boolean) $value;
+ $this->throwValidationExceptions = (bool) $value;
90
91
92
@@ -110,7 +110,7 @@ public function getInjectUniqueIdentifier()
110
111
public function setInjectUniqueIdentifier($value)
112
113
- $this->injectUniqueIdentifier = (boolean) $value;
+ $this->injectUniqueIdentifier = (bool) $value;
114
115
116
0 commit comments