Completed
Push — master ( 08c69f...7658c9 )
by mw
9s
created
src/PropertyRegistry.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -167,10 +167,16 @@  discard block
 block discarded – undo
167 167
 		}
168 168
 	}
169 169
 
170
+	/**
171
+	 * @return boolean
172
+	 */
170 173
 	protected function getPropertyLabel( $id ) {
171 174
 		return $this->lookupWithIndexForId( 'label', $id );
172 175
 	}
173 176
 
177
+	/**
178
+	 * @return boolean
179
+	 */
174 180
 	protected function getPropertyVisibility( $id ) {
175 181
 
176 182
 		$show = $this->lookupWithIndexForId( 'show', $id );
@@ -204,6 +210,11 @@  discard block
 block discarded – undo
204 210
 		return null;
205 211
 	}
206 212
 
213
+	/**
214
+	 * @param string $index
215
+	 *
216
+	 * @return string
217
+	 */
207 218
 	protected function lookupWithIndexForId( $index, $id ) {
208 219
 
209 220
 		$id = strtoupper( $id );
Please login to merge, or discard this patch.