Completed
Pull Request — master (#65)
by Verhovskij
06:53
created
src/Annotator/ExtraPropertyAnnotator.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	 * @since 1.0
51 51
 	 *
52 52
 	 * @param SemanticData $semanticData
53
-	 * @param Factory $factory
53
+	 * @param Factory $appFactory
54 54
 	 * @param array $configuration
55 55
 	 */
56 56
 	public function __construct( SemanticData $semanticData, AppFactory $appFactory, array $configuration ) {
@@ -129,11 +129,17 @@  discard block
 block discarded – undo
129 129
 		return true;
130 130
 	}
131 131
 
132
+	/**
133
+	 * @param string|null $propertyId
134
+	 */
132 135
 	protected function hasRegisteredPropertyId( $propertyId, $cachedProperties ) {
133 136
 		return ( DIProperty::getPredefinedPropertyTypeId( $propertyId ) === '' ) ||
134 137
 			array_key_exists( $propertyId, $cachedProperties );
135 138
 	}
136 139
 
140
+	/**
141
+	 * @param DIProperty $property
142
+	 */
137 143
 	protected function createDataItemById( $externalId, $property ) {
138 144
 
139 145
 		$dataItem = null;
Please login to merge, or discard this patch.
src/Cache/MessageCache.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -139,6 +139,9 @@
 block discarded – undo
139 139
 		return $this->getTextMessage( $key, $arguments );
140 140
 	}
141 141
 
142
+	/**
143
+	 * @param string $key
144
+	 */
142 145
 	protected function getTextMessage( $key, $arguments ) {
143 146
 
144 147
 		$this->messages[ $key ] = wfMessage( $arguments )->inLanguage( $this->language )->text();
Please login to merge, or discard this patch.
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.