add note about #8897 to the docs

This commit is contained in:
Carsten Brandt
2015-07-09 12:18:22 +02:00
parent 2a8b564f49
commit 54dd0eab72

View File

@ -62,6 +62,8 @@ class CompareValidator extends Validator
* - `>=`: check if value being validated is greater than or equal to the value being compared with.
* - `<`: check if value being validated is less than the value being compared with.
* - `<=`: check if value being validated is less than or equal to the value being compared with.
*
* When you want to compare numbers, make sure to also set [[type]] to `number`.
*/
public $operator = '==';
/**