Fixes #12055: Changed boolean to bool and integer to int in phpdoc

This commit is contained in:
Robert Korulczyk
2016-11-07 00:51:39 +01:00
committed by Alexander Makarov
parent 940f7c7cd4
commit 4aa935e69e
292 changed files with 1670 additions and 1670 deletions

View File

@ -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.
*/