mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 14:26:54 +08:00
Fixes #12055: Changed boolean
to bool
and integer
to int
in phpdoc
This commit is contained in:

committed by
Alexander Makarov

parent
940f7c7cd4
commit
4aa935e69e
@ -27,25 +27,25 @@ class ImageValidator extends FileValidator
|
||||
*/
|
||||
public $notImage;
|
||||
/**
|
||||
* @var integer the minimum width in pixels.
|
||||
* @var int the minimum width in pixels.
|
||||
* Defaults to null, meaning no limit.
|
||||
* @see underWidth for the customized message used when image width is too small.
|
||||
*/
|
||||
public $minWidth;
|
||||
/**
|
||||
* @var integer the maximum width in pixels.
|
||||
* @var int the maximum width in pixels.
|
||||
* Defaults to null, meaning no limit.
|
||||
* @see overWidth for the customized message used when image width is too big.
|
||||
*/
|
||||
public $maxWidth;
|
||||
/**
|
||||
* @var integer the minimum height in pixels.
|
||||
* @var int the minimum height in pixels.
|
||||
* Defaults to null, meaning no limit.
|
||||
* @see underHeight for the customized message used when image height is too small.
|
||||
*/
|
||||
public $minHeight;
|
||||
/**
|
||||
* @var integer the maximum width in pixels.
|
||||
* @var int the maximum width in pixels.
|
||||
* Defaults to null, meaning no limit.
|
||||
* @see overWidth for the customized message used when image height is too big.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user