Completed
Push — master ( 602dbe...ab6845 )
by Christophe
10:37
created
src/SortedCollection/SubSet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
 	 *
161 161
 	 * @param   string  $property  The property
162 162
 	 *
163
-	 * @return  void
163
+	 * @return  boolean
164 164
 	 *
165 165
 	 * @since   1.0.0
166 166
 	 */
Please login to merge, or discard this patch.
src/SortedCollection/TreeNode.php 1 patch
Switch Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -115,20 +115,20 @@
 block discarded – undo
115 115
 	{
116 116
 		switch ($property)
117 117
 		{
118
-		case 'first':
119
-			return $this->first();
120
-		case 'last':
121
-			return $this->last();
122
-		case 'predecessor':
123
-			return $this->predecessor();
124
-		case 'successor':
125
-			return $this->successor();
126
-		case 'key':
127
-			return $this->key;
128
-		case 'count':
129
-			return $this->count();
130
-		default:
131
-			throw new \RuntimeException('Undefined property');
118
+			case 'first':
119
+				return $this->first();
120
+			case 'last':
121
+				return $this->last();
122
+			case 'predecessor':
123
+				return $this->predecessor();
124
+			case 'successor':
125
+				return $this->successor();
126
+			case 'key':
127
+				return $this->key;
128
+			case 'count':
129
+				return $this->count();
130
+			default:
131
+				throw new \RuntimeException('Undefined property');
132 132
 		}
133 133
 	}
134 134
 
Please login to merge, or discard this patch.