Completed
Push — master ( 9a612c...de4f46 )
by Haralan
01:38
created
src/Item.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,6 @@  discard block
 block discarded – undo
35 35
     private $content;
36 36
 
37 37
     /**
38
-     * @param string  $url
39 38
      * @param integer $width
40 39
      * @param integer $height
41 40
      * @param mixed   $content
@@ -127,7 +126,7 @@  discard block
 block discarded – undo
127 126
     }
128 127
 
129 128
     /**
130
-     * @return float
129
+     * @return integer
131 130
      */
132 131
     public function getAspect()
133 132
     {
Please login to merge, or discard this patch.
src/ItemGroup.php 1 patch
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
     /**
18 18
      * @param Item[] $items
19
-     * @param float  $margin
19
+     * @param integer  $margin
20 20
      */
21 21
     public function __construct(array $items, $margin = 0)
22 22
     {
@@ -133,7 +133,6 @@  discard block
 block discarded – undo
133 133
 
134 134
     /**
135 135
      * Return a new ItemGroup with items, sliced by the $offcet and $limit
136
-     * @param  Closure $filter
137 136
      * @return ItemGroup
138 137
      */
139 138
     public function slice($offset, $limit)
@@ -182,7 +181,6 @@  discard block
 block discarded – undo
182 181
     /**
183 182
      * Remove all items that fall outside of width, when aligned horizontally, spaced by $margin
184 183
      * @param  integer $width
185
-     * @param  integer $margin
186 184
      */
187 185
     public function horizontalSlice($width)
188 186
     {
@@ -199,7 +197,6 @@  discard block
 block discarded – undo
199 197
     /**
200 198
      * Remove all items that fall outside of height, when aligned horizontally, spaced by $margin
201 199
      * @param  integer $height
202
-     * @param  integer $margin
203 200
      */
204 201
     public function verticalSlice($height)
205 202
     {
Please login to merge, or discard this patch.