xfrocks
Well-known member
This is a cosmetic issue:
The PHPDoc should have param type before param name like below:
PHP:
abstract class XenForo_Image_Abstract
{
/**
* Crops the current image.
*
* @param $x Crop start x position
* @param $y Crop start y position
* @param $width Crop width
* @param $height Crop height
*/
abstract public function crop($x, $y, $width, $height);
}
The PHPDoc should have param type before param name like below:
Code:
@param int $x Crop start x position