Completed
Push — master ( 70290c...fe9eef )
by Nicholas
16:04
created
src/hsl.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	 * 
79 79
 	 * @param  string $offset The offset to set
80 80
 	 * @param  mixed  $value  The value to set it to
81
-	 * @return mixed          The result
81
+	 * @return double|null          The result
82 82
 	 */
83 83
 	public function offsetSet($offset, $value) {
84 84
 		if ($this->offsetExists($offset)) {
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 	 * Reset an offset to 0
96 96
 	 * 
97 97
 	 * @param  string $offset The offset to unset
98
-	 * @return mixed          The result
98
+	 * @return double|null          The result
99 99
 	 */
100 100
 	public function offsetUnset($offset) {
101 101
 		if ($this->offsetExists($offset)) {
Please login to merge, or discard this patch.