Completed
Push — master ( 5e9465...ba3fad )
by John
12:19
created
src/Lists/ArrayList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
 	
123 123
 	/**
124 124
 	 * Returns an iterator over the elements in this list in proper sequence.
125
-	 * @return IteratorInterface
125
+	 * @return ListIterator
126 126
 	 */
127 127
 	public function iterator()
128 128
 	{
Please login to merge, or discard this patch.
src/Set/ArraySet.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	
57 57
 	/**
58 58
 	 * Returns an iterator over the elements in this collection.
59
-	 * @return IteratorInterface
59
+	 * @return SetIterator
60 60
 	 */
61 61
 	public function iterator()
62 62
 	{
@@ -65,7 +65,6 @@  discard block
 block discarded – undo
65 65
 	
66 66
 	/**
67 67
 	 * Removes a single instance of the specified element from this collection, if it is present (optional operation).
68
-	 * @param boolean $changed
69 68
 	 */
70 69
 	public function remove($element)
71 70
 	{
Please login to merge, or discard this patch.
src/Set/HashSet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
 	
76 76
 	/**
77 77
 	 * Returns an iterator over the elements in this collection.
78
-	 * @return IteratorInterface
78
+	 * @return SetIterator
79 79
 	*/
80 80
 	public function iterator()
81 81
 	{
Please login to merge, or discard this patch.
src/Set/SetIterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
 	 * The behavior of an iterator is unspecified if the underlying
83 83
 	 * collection is modified while the iteration is in progress in any
84 84
 	 * way other than by calling this method.
85
-	 * @return boolean
85
+	 * @return boolean|null
86 86
 	 */
87 87
 	public function remove()
88 88
 	{
Please login to merge, or discard this patch.
src/Set/TupleSet.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
 	
31 31
 	/**
32 32
 	 * Ensures that this collection contains the specified element (optional operation).
33
-	 * @param multitype $element
34
-	 * @return boolean
33
+	 * @param Tuple $element
34
+	 * @return boolean|null
35 35
 	 */
36 36
 	public function add($element)
37 37
 	{
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	
62 62
 	/**
63 63
 	 * Returns an iterator over the elements in this collection.
64
-	 * @return IteratorInterface
64
+	 * @return SetIterator
65 65
 	*/
66 66
 	public function iterator()
67 67
 	{
@@ -70,7 +70,6 @@  discard block
 block discarded – undo
70 70
 	
71 71
 	/**
72 72
 	 * Removes a single instance of the specified element from this collection, if it is present (optional operation).
73
-	 * @param boolean $changed
74 73
 	*/
75 74
 	public function remove($tuple)
76 75
 	{
Please login to merge, or discard this patch.
src/Tree/SimpleTreeNode.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 	
128 128
 	/**
129 129
 	 * Adds child to the receiver at index.
130
-	 * @param TreeNodeInterface $nodex
130
+	 * @param TreeNodeInterface $node
131 131
 	 * @return void
132 132
 	*/
133 133
 	public function insert(TreeNodeInterface $node)
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 	/**
222 222
 	 * Outputs to stdout a simplistic representation of this node and
223 223
 	 * it's children
224
-	 * @param number $level
224
+	 * @param integer $level
225 225
 	 */
226 226
 	public function printTree($level = 0)
227 227
 	{
Please login to merge, or discard this patch.
src/Map/HashMap.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	
67 67
 	/**
68 68
 	 * Returns a Set view of the mappings contained in this map.
69
-	 * @return SetInterface
69
+	 * @return TupleSet
70 70
 	*/
71 71
 	public function entrySet()
72 72
 	{
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 	
117 117
 	/**
118 118
 	 * Returns a Set view of the keys contained in this map.
119
-	 * @return SetInterface
119
+	 * @return ArraySet
120 120
 	*/
121 121
 	public function keySet()
122 122
 	{
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 	
182 182
 	/**
183 183
 	 * Returns a Collection view of the values contained in this map.
184
-	 * @return CollectionInterface
184
+	 * @return ArrayList
185 185
 	*/
186 186
 	public function values()
187 187
 	{
Please login to merge, or discard this patch.