yiisoft / validator

Yii validator library
https://www.yiiframework.com/
BSD 3-Clause "New" or "Revised" License
110 stars 36 forks source link

Replace `mixed $skipOnEmpty` in rules constructors to `bool|callable|null $skipOnEmpty` #660

Closed vjik closed 2 months ago

vjik commented 4 months ago

Example rule where already implemented it: Equal.

arogachev commented 2 months ago

Do you mean to change it only for arguments (not properties) like this?

mixed $skipOnEmpty

Because in properties callable type is not allowed.

vjik commented 2 months ago

Do you mean to change it only for arguments (not properties) like this?

mixed $skipOnEmpty

Because in properties callable type is not allowed.

yes

vjik commented 2 months ago

Done by #698