Completed
Push — master ( 8a2797...318aef )
by Jonathan
02:16
created
src/Manipulators/Size.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
     /**
123 123
      * Resolve crop.
124
-     * @return array The resolved crop.
124
+     * @return integer[] The resolved crop.
125 125
      */
126 126
     public function getCrop()
127 127
     {
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
      * @param  Image    $image  The source image.
175 175
      * @param  int|null $width  The image width.
176 176
      * @param  int|null $height The image height.
177
-     * @return int[]    The resolved width and height.
177
+     * @return integer[]    The resolved width and height.
178 178
      */
179 179
     public function resolveMissingDimensions(Image $image, $width, $height)
180 180
     {
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
      * @param  int   $width  The target image width.
203 203
      * @param  int   $height The target image height.
204 204
      * @param  int   $dpr    The device pixel ratio.
205
-     * @return int[] The modified width and height.
205
+     * @return integer[] The modified width and height.
206 206
      */
207 207
     public function applyDpr($width, $height, $dpr)
208 208
     {
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
      * Limit image size to maximum allowed image size.
220 220
      * @param  int   $width  The image width.
221 221
      * @param  int   $height The image height.
222
-     * @return int[] The limited width and height.
222
+     * @return integer[] The limited width and height.
223 223
      */
224 224
     public function limitImageSize($width, $height)
225 225
     {
Please login to merge, or discard this patch.