Commit cdd9c6ea by Vincent

Corrected an error in the inline validator doc

parent 462c5003
...@@ -119,7 +119,7 @@ needs to be divisible by 10. In the rules you would define: `['attributeName', ' ...@@ -119,7 +119,7 @@ needs to be divisible by 10. In the rules you would define: `['attributeName', '
Then, your own method could look like this: Then, your own method could look like this:
```php ```php
public function myValidationMethod($attribute) { public function myValidationMethod($attribute) {
if(($attribute % 10) != 0) { if(($this->attributeName % 10) != 0) {
$this->addError($attribute, 'cannot divide value by 10'); $this->addError($attribute, 'cannot divide value by 10');
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment