Completed
Push — master ( 277d81...acca9d )
by
unknown
03:07
created
src/ConstraintCheck/Helper/TypeCheckerHelper.php 1 patch
Spacing   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -80,23 +80,23 @@  discard block
 block discarded – undo
80 80
 	 * @return bool
81 81
 	 * @throws OverflowException if $entitiesChecked exceeds the configured limit
82 82
 	 */
83
-	private function isSubclassOf( EntityId $comparativeClass, array $classesToCheck, &$entitiesChecked = 0 ) {
84
-		$maxEntities = $this->config->get( 'WBQualityConstraintsTypeCheckMaxEntities' );
83
+	private function isSubclassOf(EntityId $comparativeClass, array $classesToCheck, &$entitiesChecked = 0) {
84
+		$maxEntities = $this->config->get('WBQualityConstraintsTypeCheckMaxEntities');
85 85
 		if ( ++$entitiesChecked > $maxEntities ) {
86
-			throw new OverflowException( 'Too many entities to check' );
86
+			throw new OverflowException('Too many entities to check');
87 87
 		}
88 88
 
89
-		$item = $this->entityLookup->getEntity( $comparativeClass );
90
-		if ( !( $item instanceof StatementListProvider ) ) {
89
+		$item = $this->entityLookup->getEntity($comparativeClass);
90
+		if (!($item instanceof StatementListProvider)) {
91 91
 			return false; // lookup failed, probably because item doesn't exist
92 92
 		}
93 93
 
94
-		$subclassId = $this->config->get( 'WBQualityConstraintsSubclassOfId' );
94
+		$subclassId = $this->config->get('WBQualityConstraintsSubclassOfId');
95 95
 		/** @var Statement $statement */
96
-		foreach ( $item->getStatements()->getByPropertyId( new PropertyId( $subclassId ) ) as $statement ) {
96
+		foreach ($item->getStatements()->getByPropertyId(new PropertyId($subclassId)) as $statement) {
97 97
 			$mainSnak = $statement->getMainSnak();
98 98
 
99
-			if ( !( $this->hasCorrectType( $mainSnak ) ) ) {
99
+			if (!($this->hasCorrectType($mainSnak))) {
100 100
 				continue;
101 101
 			}
102 102
 			/** @var PropertyValueSnak $mainSnak */
@@ -105,11 +105,11 @@  discard block
 block discarded – undo
105 105
 			$dataValue = $mainSnak->getDataValue();
106 106
 			$comparativeClass = $dataValue->getEntityId();
107 107
 
108
-			if ( in_array( $comparativeClass->getSerialization(), $classesToCheck ) ) {
108
+			if (in_array($comparativeClass->getSerialization(), $classesToCheck)) {
109 109
 				return true;
110 110
 			}
111 111
 
112
-			if ( $this->isSubclassOf( $comparativeClass, $classesToCheck, $entitiesChecked ) ) {
112
+			if ($this->isSubclassOf($comparativeClass, $classesToCheck, $entitiesChecked)) {
113 113
 				return true;
114 114
 			}
115 115
 		}
@@ -130,43 +130,43 @@  discard block
 block discarded – undo
130 130
 	 * @return CachedBool
131 131
 	 * @throws SparqlHelperException if SPARQL is used and the query times out or some other error occurs
132 132
 	 */
133
-	public function isSubclassOfWithSparqlFallback( EntityId $comparativeClass, array $classesToCheck ) {
133
+	public function isSubclassOfWithSparqlFallback(EntityId $comparativeClass, array $classesToCheck) {
134 134
 		try {
135
-			$start1 = microtime( true );
136
-			$isSubclass = $this->isSubclassOf( $comparativeClass, $classesToCheck );
137
-			$end1 = microtime( true );
135
+			$start1 = microtime(true);
136
+			$isSubclass = $this->isSubclassOf($comparativeClass, $classesToCheck);
137
+			$end1 = microtime(true);
138 138
 			$this->dataFactory->timing(
139 139
 				'wikibase.quality.constraints.type.php.success.timing',
140
-				( $end1 - $start1 ) * 1000
140
+				($end1 - $start1) * 1000
141 141
 			);
142 142
 
143
-			return new CachedBool( $isSubclass, Metadata::blank() );
144
-		} catch ( OverflowException $e ) {
145
-			$end1 = microtime( true );
143
+			return new CachedBool($isSubclass, Metadata::blank());
144
+		} catch (OverflowException $e) {
145
+			$end1 = microtime(true);
146 146
 			$this->dataFactory->timing(
147 147
 				'wikibase.quality.constraints.type.php.overflow.timing',
148
-				( $end1 - $start1 ) * 1000
148
+				($end1 - $start1) * 1000
149 149
 			);
150 150
 
151
-			if ( !( $this->sparqlHelper instanceof DummySparqlHelper ) ) {
151
+			if (!($this->sparqlHelper instanceof DummySparqlHelper)) {
152 152
 				$this->dataFactory->increment(
153 153
 					'wikibase.quality.constraints.sparql.typeFallback'
154 154
 				);
155 155
 
156
-				$start2 = microtime( true );
156
+				$start2 = microtime(true);
157 157
 				$hasType = $this->sparqlHelper->hasType(
158 158
 					$comparativeClass->getSerialization(),
159 159
 					$classesToCheck
160 160
 				);
161
-				$end2 = microtime( true );
161
+				$end2 = microtime(true);
162 162
 				$this->dataFactory->timing(
163 163
 					'wikibase.quality.constraints.type.sparql.success.timing',
164
-					( $end2 - $start2 ) * 1000
164
+					($end2 - $start2) * 1000
165 165
 				);
166 166
 
167 167
 				return $hasType;
168 168
 			} else {
169
-				return new CachedBool( false, Metadata::blank() );
169
+				return new CachedBool(false, Metadata::blank());
170 170
 			}
171 171
 		}
172 172
 	}
@@ -184,13 +184,13 @@  discard block
 block discarded – undo
184 184
 	 * @return CachedBool
185 185
 	 * @throws SparqlHelperException if SPARQL is used and the query times out or some other error occurs
186 186
 	 */
187
-	public function hasClassInRelation( StatementList $statements, array $relationIds, array $classesToCheck ) {
187
+	public function hasClassInRelation(StatementList $statements, array $relationIds, array $classesToCheck) {
188 188
 		$metadatas = [];
189 189
 
190
-		foreach ( $this->getStatementsByPropertyIds( $statements, $relationIds ) as $statement ) {
190
+		foreach ($this->getStatementsByPropertyIds($statements, $relationIds) as $statement) {
191 191
 			$mainSnak = $statement->getMainSnak();
192 192
 
193
-			if ( !$this->hasCorrectType( $mainSnak ) ) {
193
+			if (!$this->hasCorrectType($mainSnak)) {
194 194
 				continue;
195 195
 			}
196 196
 			/** @var PropertyValueSnak $mainSnak */
@@ -199,28 +199,28 @@  discard block
 block discarded – undo
199 199
 			$dataValue = $mainSnak->getDataValue();
200 200
 			$comparativeClass = $dataValue->getEntityId();
201 201
 
202
-			if ( in_array( $comparativeClass->getSerialization(), $classesToCheck ) ) {
202
+			if (in_array($comparativeClass->getSerialization(), $classesToCheck)) {
203 203
 				// discard $metadatas, we know this is fresh
204
-				return new CachedBool( true, Metadata::blank() );
204
+				return new CachedBool(true, Metadata::blank());
205 205
 			}
206 206
 
207
-			$result = $this->isSubclassOfWithSparqlFallback( $comparativeClass, $classesToCheck );
207
+			$result = $this->isSubclassOfWithSparqlFallback($comparativeClass, $classesToCheck);
208 208
 			$metadatas[] = $result->getMetadata();
209
-			if ( $result->getBool() ) {
209
+			if ($result->getBool()) {
210 210
 				return new CachedBool(
211 211
 					true,
212
-					Metadata::merge( $metadatas )
212
+					Metadata::merge($metadatas)
213 213
 				);
214 214
 			}
215 215
 		}
216 216
 
217 217
 		return new CachedBool(
218 218
 			false,
219
-			Metadata::merge( $metadatas )
219
+			Metadata::merge($metadatas)
220 220
 		);
221 221
 	}
222 222
 
223
-	private function hasCorrectType( Snak $mainSnak ) {
223
+	private function hasCorrectType(Snak $mainSnak) {
224 224
 		return $mainSnak instanceof PropertyValueSnak
225 225
 			&& $mainSnak->getDataValue()->getType() === 'wikibase-entityid';
226 226
 	}
@@ -237,12 +237,12 @@  discard block
 block discarded – undo
237 237
 	) {
238 238
 		$statementArrays = [];
239 239
 
240
-		foreach ( $propertyIdSerializations as $propertyIdSerialization ) {
241
-			$propertyId = new PropertyId( $propertyIdSerialization );
242
-			$statementArrays[] = $statements->getByPropertyId( $propertyId )->toArray();
240
+		foreach ($propertyIdSerializations as $propertyIdSerialization) {
241
+			$propertyId = new PropertyId($propertyIdSerialization);
242
+			$statementArrays[] = $statements->getByPropertyId($propertyId)->toArray();
243 243
 		}
244 244
 
245
-		return call_user_func_array( 'array_merge', $statementArrays );
245
+		return call_user_func_array('array_merge', $statementArrays);
246 246
 	}
247 247
 
248 248
 	/**
@@ -254,10 +254,10 @@  discard block
 block discarded – undo
254 254
 	 *
255 255
 	 * @return ViolationMessage
256 256
 	 */
257
-	public function getViolationMessage( PropertyId $propertyId, EntityId $entityId, array $classes, $checker, $relation ) {
257
+	public function getViolationMessage(PropertyId $propertyId, EntityId $entityId, array $classes, $checker, $relation) {
258 258
 		$classes = array_map(
259
-			function( $itemIdSerialization ) {
260
-				return new ItemId( $itemIdSerialization );
259
+			function($itemIdSerialization) {
260
+				return new ItemId($itemIdSerialization);
261 261
 			},
262 262
 			$classes
263 263
 		);
@@ -269,10 +269,10 @@  discard block
 block discarded – undo
269 269
 		// wbqc-violation-message-valueType-instance
270 270
 		// wbqc-violation-message-valueType-subclass
271 271
 		// wbqc-violation-message-valueType-instanceOrSubclass
272
-		return ( new ViolationMessage( 'wbqc-violation-message-' . $checker . '-' . $relation ) )
273
-			->withEntityId( $propertyId, Role::CONSTRAINT_PROPERTY )
274
-			->withEntityId( $entityId, Role::SUBJECT )
275
-			->withEntityIdList( $classes, Role::OBJECT );
272
+		return (new ViolationMessage('wbqc-violation-message-'.$checker.'-'.$relation))
273
+			->withEntityId($propertyId, Role::CONSTRAINT_PROPERTY)
274
+			->withEntityId($entityId, Role::SUBJECT)
275
+			->withEntityIdList($classes, Role::OBJECT);
276 276
 	}
277 277
 
278 278
 }
Please login to merge, or discard this patch.
src/ConstraintCheck/Helper/DummySparqlHelper.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -22,15 +22,15 @@  discard block
 block discarded – undo
22 22
 		// no parent::__construct() call
23 23
 	}
24 24
 
25
-	public function hasType( $id, array $classes ) {
26
-		throw new LogicException( 'methods of this class should never be called' );
25
+	public function hasType($id, array $classes) {
26
+		throw new LogicException('methods of this class should never be called');
27 27
 	}
28 28
 
29 29
 	public function findEntitiesWithSameStatement(
30 30
 		Statement $statement,
31 31
 		$ignoreDeprecatedStatements
32 32
 	) {
33
-		throw new LogicException( 'methods of this class should never be called' );
33
+		throw new LogicException('methods of this class should never be called');
34 34
 	}
35 35
 
36 36
 	public function findEntitiesWithSameQualifierOrReference(
@@ -39,15 +39,15 @@  discard block
 block discarded – undo
39 39
 		$type,
40 40
 		$ignoreDeprecatedStatements
41 41
 	) {
42
-		throw new LogicException( 'methods of this class should never be called' );
42
+		throw new LogicException('methods of this class should never be called');
43 43
 	}
44 44
 
45
-	public function matchesRegularExpression( $text, $regex ) {
46
-		throw new LogicException( 'methods of this class should never be called' );
45
+	public function matchesRegularExpression($text, $regex) {
46
+		throw new LogicException('methods of this class should never be called');
47 47
 	}
48 48
 
49
-	public function runQuery( $query, $needsPrefixes = true ) {
50
-		throw new LogicException( 'methods of this class should never be called' );
49
+	public function runQuery($query, $needsPrefixes = true) {
50
+		throw new LogicException('methods of this class should never be called');
51 51
 	}
52 52
 
53 53
 }
Please login to merge, or discard this patch.
src/ConstraintCheck/Helper/SparqlHelper.php 1 patch
Spacing   +165 added lines, -168 removed lines patch added patch discarded remove patch
@@ -161,19 +161,19 @@  discard block
 block discarded – undo
161 161
 		$this->loggingHelper = $loggingHelper;
162 162
 		$this->defaultUserAgent = $defaultUserAgent;
163 163
 		$this->requestFactory = $requestFactory;
164
-		$this->entityPrefix = $rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_ENTITY );
164
+		$this->entityPrefix = $rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_ENTITY);
165 165
 		$this->prefixes = <<<EOT
166
-PREFIX wd: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_ENTITY )}>
167
-PREFIX wds: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_STATEMENT )}>
168
-PREFIX wdt: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_DIRECT_CLAIM )}>
169
-PREFIX wdv: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_VALUE )}>
170
-PREFIX p: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_CLAIM )}>
171
-PREFIX ps: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_CLAIM_STATEMENT )}>
172
-PREFIX pq: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_QUALIFIER )}>
173
-PREFIX pqv: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_QUALIFIER_VALUE )}>
174
-PREFIX pr: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_REFERENCE )}>
175
-PREFIX prv: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_REFERENCE_VALUE )}>
176
-PREFIX wikibase: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_ONTOLOGY )}>
166
+PREFIX wd: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_ENTITY)}>
167
+PREFIX wds: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_STATEMENT)}>
168
+PREFIX wdt: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_DIRECT_CLAIM)}>
169
+PREFIX wdv: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_VALUE)}>
170
+PREFIX p: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_CLAIM)}>
171
+PREFIX ps: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_CLAIM_STATEMENT)}>
172
+PREFIX pq: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_QUALIFIER)}>
173
+PREFIX pqv: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_QUALIFIER_VALUE)}>
174
+PREFIX pr: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_REFERENCE)}>
175
+PREFIX prv: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_REFERENCE_VALUE)}>
176
+PREFIX wikibase: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_ONTOLOGY)}>
177 177
 EOT;
178 178
 	}
179 179
 
@@ -184,22 +184,21 @@  discard block
 block discarded – undo
184 184
 	 * @return CachedBool
185 185
 	 * @throws SparqlHelperException if the query times out or some other error occurs
186 186
 	 */
187
-	public function hasType( $id, array $classes ) {
188
-		$subclassOfId = $this->config->get( 'WBQualityConstraintsSubclassOfId' );
187
+	public function hasType($id, array $classes) {
188
+		$subclassOfId = $this->config->get('WBQualityConstraintsSubclassOfId');
189 189
 		// TODO hint:gearing is a workaround for T168973 and can hopefully be removed eventually
190
-		$gearingHint = $this->config->get( 'WBQualityConstraintsSparqlHasWikibaseSupport' ) ?
191
-			' hint:Prior hint:gearing "forward".' :
192
-			'';
190
+		$gearingHint = $this->config->get('WBQualityConstraintsSparqlHasWikibaseSupport') ?
191
+			' hint:Prior hint:gearing "forward".' : '';
193 192
 
194 193
 		$metadatas = [];
195 194
 
196
-		foreach ( array_chunk( $classes, 20 ) as $classesChunk ) {
197
-			$classesValues = implode( ' ', array_map(
198
-				function( $class ) {
199
-					return 'wd:' . $class;
195
+		foreach (array_chunk($classes, 20) as $classesChunk) {
196
+			$classesValues = implode(' ', array_map(
197
+				function($class) {
198
+					return 'wd:'.$class;
200 199
 				},
201 200
 				$classesChunk
202
-			) );
201
+			));
203 202
 
204 203
 			$query = <<<EOF
205 204
 ASK {
@@ -209,19 +208,19 @@  discard block
 block discarded – undo
209 208
 }
210 209
 EOF;
211 210
 
212
-			$result = $this->runQuery( $query );
211
+			$result = $this->runQuery($query);
213 212
 			$metadatas[] = $result->getMetadata();
214
-			if ( $result->getArray()['boolean'] ) {
213
+			if ($result->getArray()['boolean']) {
215 214
 				return new CachedBool(
216 215
 					true,
217
-					Metadata::merge( $metadatas )
216
+					Metadata::merge($metadatas)
218 217
 				);
219 218
 			}
220 219
 		}
221 220
 
222 221
 		return new CachedBool(
223 222
 			false,
224
-			Metadata::merge( $metadatas )
223
+			Metadata::merge($metadatas)
225 224
 		);
226 225
 	}
227 226
 
@@ -237,10 +236,10 @@  discard block
 block discarded – undo
237 236
 		$ignoreDeprecatedStatements
238 237
 	) {
239 238
 		$pid = $statement->getPropertyId()->serialize();
240
-		$guid = str_replace( '$', '-', $statement->getGuid() );
239
+		$guid = str_replace('$', '-', $statement->getGuid());
241 240
 
242 241
 		$deprecatedFilter = '';
243
-		if ( $ignoreDeprecatedStatements ) {
242
+		if ($ignoreDeprecatedStatements) {
244 243
 			$deprecatedFilter = 'MINUS { ?otherStatement wikibase:rank wikibase:DeprecatedRank. }';
245 244
 		}
246 245
 
@@ -259,9 +258,9 @@  discard block
 block discarded – undo
259 258
 LIMIT 10
260 259
 EOF;
261 260
 
262
-		$result = $this->runQuery( $query );
261
+		$result = $this->runQuery($query);
263 262
 
264
-		return $this->getOtherEntities( $result );
263
+		return $this->getOtherEntities($result);
265 264
 	}
266 265
 
267 266
 	/**
@@ -286,16 +285,15 @@  discard block
 block discarded – undo
286 285
 		$dataType = $this->propertyDataTypeLookup->getDataTypeIdForProperty(
287 286
 			$snak->getPropertyId()
288 287
 		);
289
-		list( $value, $isFullValue ) = $this->getRdfLiteral( $dataType, $dataValue );
290
-		if ( $isFullValue ) {
288
+		list($value, $isFullValue) = $this->getRdfLiteral($dataType, $dataValue);
289
+		if ($isFullValue) {
291 290
 			$prefix .= 'v';
292 291
 		}
293 292
 		$path = $type === Context::TYPE_QUALIFIER ?
294
-			"$prefix:$pid" :
295
-			"prov:wasDerivedFrom/$prefix:$pid";
293
+			"$prefix:$pid" : "prov:wasDerivedFrom/$prefix:$pid";
296 294
 
297 295
 		$deprecatedFilter = '';
298
-		if ( $ignoreDeprecatedStatements ) {
296
+		if ($ignoreDeprecatedStatements) {
299 297
 			$deprecatedFilter = <<< EOF
300 298
   MINUS { ?otherStatement wikibase:rank wikibase:DeprecatedRank. }
301 299
 EOF;
@@ -315,9 +313,9 @@  discard block
 block discarded – undo
315 313
 LIMIT 10
316 314
 EOF;
317 315
 
318
-		$result = $this->runQuery( $query );
316
+		$result = $this->runQuery($query);
319 317
 
320
-		return $this->getOtherEntities( $result );
318
+		return $this->getOtherEntities($result);
321 319
 	}
322 320
 
323 321
 	/**
@@ -327,8 +325,8 @@  discard block
 block discarded – undo
327 325
 	 *
328 326
 	 * @return string
329 327
 	 */
330
-	private function stringLiteral( $text ) {
331
-		return '"' . strtr( $text, [ '"' => '\\"', '\\' => '\\\\' ] ) . '"';
328
+	private function stringLiteral($text) {
329
+		return '"'.strtr($text, ['"' => '\\"', '\\' => '\\\\']).'"';
332 330
 	}
333 331
 
334 332
 	/**
@@ -338,17 +336,17 @@  discard block
 block discarded – undo
338 336
 	 *
339 337
 	 * @return CachedEntityIds
340 338
 	 */
341
-	private function getOtherEntities( CachedQueryResults $results ) {
342
-		return new CachedEntityIds( array_map(
343
-			function ( $resultBindings ) {
339
+	private function getOtherEntities(CachedQueryResults $results) {
340
+		return new CachedEntityIds(array_map(
341
+			function($resultBindings) {
344 342
 				$entityIRI = $resultBindings['otherEntity']['value'];
345
-				$entityPrefixLength = strlen( $this->entityPrefix );
346
-				if ( substr( $entityIRI, 0, $entityPrefixLength ) === $this->entityPrefix ) {
343
+				$entityPrefixLength = strlen($this->entityPrefix);
344
+				if (substr($entityIRI, 0, $entityPrefixLength) === $this->entityPrefix) {
347 345
 					try {
348 346
 						return $this->entityIdParser->parse(
349
-							substr( $entityIRI, $entityPrefixLength )
347
+							substr($entityIRI, $entityPrefixLength)
350 348
 						);
351
-					} catch ( EntityIdParsingException $e ) {
349
+					} catch (EntityIdParsingException $e) {
352 350
 						// fall through
353 351
 					}
354 352
 				}
@@ -356,7 +354,7 @@  discard block
 block discarded – undo
356 354
 				return null;
357 355
 			},
358 356
 			$results->getArray()['results']['bindings']
359
-		), $results->getMetadata() );
357
+		), $results->getMetadata());
360 358
 	}
361 359
 
362 360
 	// @codingStandardsIgnoreStart cyclomatic complexity of this function is too high
@@ -369,47 +367,47 @@  discard block
 block discarded – undo
369 367
 	 * @return array the literal or IRI as a string in SPARQL syntax,
370 368
 	 * and a boolean indicating whether it refers to a full value node or not
371 369
 	 */
372
-	private function getRdfLiteral( $dataType, DataValue $dataValue ) {
373
-		switch ( $dataType ) {
370
+	private function getRdfLiteral($dataType, DataValue $dataValue) {
371
+		switch ($dataType) {
374 372
 			case 'string':
375 373
 			case 'external-id':
376
-				return [ $this->stringLiteral( $dataValue->getValue() ), false ];
374
+				return [$this->stringLiteral($dataValue->getValue()), false];
377 375
 			case 'commonsMedia':
378
-				$url = $this->rdfVocabulary->getMediaFileURI( $dataValue->getValue() );
379
-				return [ '<' . $url . '>', false ];
376
+				$url = $this->rdfVocabulary->getMediaFileURI($dataValue->getValue());
377
+				return ['<'.$url.'>', false];
380 378
 			case 'geo-shape':
381
-				$url = $this->rdfVocabulary->getGeoShapeURI( $dataValue->getValue() );
382
-				return [ '<' . $url . '>', false ];
379
+				$url = $this->rdfVocabulary->getGeoShapeURI($dataValue->getValue());
380
+				return ['<'.$url.'>', false];
383 381
 			case 'tabular-data':
384
-				$url = $this->rdfVocabulary->getTabularDataURI( $dataValue->getValue() );
385
-				return [ '<' . $url . '>', false ];
382
+				$url = $this->rdfVocabulary->getTabularDataURI($dataValue->getValue());
383
+				return ['<'.$url.'>', false];
386 384
 			case 'url':
387 385
 				$url = $dataValue->getValue();
388
-				if ( !preg_match( '/^[^<>"{}\\\\|^`\\x00-\\x20]*$/D', $url ) ) {
386
+				if (!preg_match('/^[^<>"{}\\\\|^`\\x00-\\x20]*$/D', $url)) {
389 387
 					// not a valid URL for SPARQL (see SPARQL spec, production 139 IRIREF)
390 388
 					// such an URL should never reach us, so just throw
391
-					throw new InvalidArgumentException( 'invalid URL: ' . $url );
389
+					throw new InvalidArgumentException('invalid URL: '.$url);
392 390
 				}
393
-				return [ '<' . $url . '>', false ];
391
+				return ['<'.$url.'>', false];
394 392
 			case 'wikibase-item':
395 393
 			case 'wikibase-property':
396 394
 				/** @var EntityIdValue $dataValue */
397
-				return [ 'wd:' . $dataValue->getEntityId()->getSerialization(), false ];
395
+				return ['wd:'.$dataValue->getEntityId()->getSerialization(), false];
398 396
 			case 'monolingualtext':
399 397
 				/** @var MonolingualTextValue $dataValue */
400 398
 				$lang = $dataValue->getLanguageCode();
401
-				if ( !preg_match( '/^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/D', $lang ) ) {
399
+				if (!preg_match('/^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/D', $lang)) {
402 400
 					// not a valid language tag for SPARQL (see SPARQL spec, production 145 LANGTAG)
403 401
 					// such a language tag should never reach us, so just throw
404
-					throw new InvalidArgumentException( 'invalid language tag: ' . $lang );
402
+					throw new InvalidArgumentException('invalid language tag: '.$lang);
405 403
 				}
406
-				return [ $this->stringLiteral( $dataValue->getText() ) . '@' . $lang, false ];
404
+				return [$this->stringLiteral($dataValue->getText()).'@'.$lang, false];
407 405
 			case 'globe-coordinate':
408 406
 			case 'quantity':
409 407
 			case 'time':
410
-				return [ 'wdv:' . $dataValue->getHash(), true ];
408
+				return ['wdv:'.$dataValue->getHash(), true];
411 409
 			default:
412
-				throw new InvalidArgumentException( 'unknown data type: ' . $dataType );
410
+				throw new InvalidArgumentException('unknown data type: '.$dataType);
413 411
 		}
414 412
 	}
415 413
 	// @codingStandardsIgnoreEnd
@@ -422,44 +420,44 @@  discard block
 block discarded – undo
422 420
 	 * @throws SparqlHelperException if the query times out or some other error occurs
423 421
 	 * @throws ConstraintParameterException if the $regex is invalid
424 422
 	 */
425
-	public function matchesRegularExpression( $text, $regex ) {
423
+	public function matchesRegularExpression($text, $regex) {
426 424
 		// caching wrapper around matchesRegularExpressionWithSparql
427 425
 
428
-		$textHash = hash( 'sha256', $text );
426
+		$textHash = hash('sha256', $text);
429 427
 		$cacheKey = $this->cache->makeKey(
430 428
 			'WikibaseQualityConstraints', // extension
431 429
 			'regex', // action
432 430
 			'WDQS-Java', // regex flavor
433
-			hash( 'sha256', $regex )
431
+			hash('sha256', $regex)
434 432
 		);
435
-		$cacheMapSize = $this->config->get( 'WBQualityConstraintsFormatCacheMapSize' );
433
+		$cacheMapSize = $this->config->get('WBQualityConstraintsFormatCacheMapSize');
436 434
 
437 435
 		$cacheMapArray = $this->cache->getWithSetCallback(
438 436
 			$cacheKey,
439 437
 			WANObjectCache::TTL_DAY,
440
-			function( $cacheMapArray ) use ( $text, $regex, $textHash, $cacheMapSize ) {
438
+			function($cacheMapArray) use ($text, $regex, $textHash, $cacheMapSize) {
441 439
 				// Initialize the cache map if not set
442
-				if ( $cacheMapArray === false ) {
440
+				if ($cacheMapArray === false) {
443 441
 					$key = 'wikibase.quality.constraints.regex.cache.refresh.init';
444
-					$this->dataFactory->increment( $key );
442
+					$this->dataFactory->increment($key);
445 443
 					return [];
446 444
 				}
447 445
 
448 446
 				$key = 'wikibase.quality.constraints.regex.cache.refresh';
449
-				$this->dataFactory->increment( $key );
450
-				$cacheMap = MapCacheLRU::newFromArray( $cacheMapArray, $cacheMapSize );
451
-				if ( $cacheMap->has( $textHash ) ) {
447
+				$this->dataFactory->increment($key);
448
+				$cacheMap = MapCacheLRU::newFromArray($cacheMapArray, $cacheMapSize);
449
+				if ($cacheMap->has($textHash)) {
452 450
 					$key = 'wikibase.quality.constraints.regex.cache.refresh.hit';
453
-					$this->dataFactory->increment( $key );
454
-					$cacheMap->get( $textHash ); // ping cache
451
+					$this->dataFactory->increment($key);
452
+					$cacheMap->get($textHash); // ping cache
455 453
 				} else {
456 454
 					$key = 'wikibase.quality.constraints.regex.cache.refresh.miss';
457
-					$this->dataFactory->increment( $key );
455
+					$this->dataFactory->increment($key);
458 456
 					try {
459
-						$matches = $this->matchesRegularExpressionWithSparql( $text, $regex );
460
-					} catch ( ConstraintParameterException $e ) {
461
-						$matches = $this->serializeConstraintParameterException( $e );
462
-					} catch ( SparqlHelperException $e ) {
457
+						$matches = $this->matchesRegularExpressionWithSparql($text, $regex);
458
+					} catch (ConstraintParameterException $e) {
459
+						$matches = $this->serializeConstraintParameterException($e);
460
+					} catch (SparqlHelperException $e) {
463 461
 						// don’t cache this
464 462
 						return $cacheMap->toArray();
465 463
 					}
@@ -483,42 +481,42 @@  discard block
 block discarded – undo
483 481
 			]
484 482
 		);
485 483
 
486
-		if ( isset( $cacheMapArray[$textHash] ) ) {
484
+		if (isset($cacheMapArray[$textHash])) {
487 485
 			$key = 'wikibase.quality.constraints.regex.cache.hit';
488
-			$this->dataFactory->increment( $key );
486
+			$this->dataFactory->increment($key);
489 487
 			$matches = $cacheMapArray[$textHash];
490
-			if ( is_bool( $matches ) ) {
488
+			if (is_bool($matches)) {
491 489
 				return $matches;
492
-			} elseif ( is_array( $matches ) &&
493
-				$matches['type'] == ConstraintParameterException::class ) {
494
-				throw $this->deserializeConstraintParameterException( $matches );
490
+			} elseif (is_array($matches) &&
491
+				$matches['type'] == ConstraintParameterException::class) {
492
+				throw $this->deserializeConstraintParameterException($matches);
495 493
 			} else {
496 494
 				throw new MWException(
497
-					'Value of unknown type in object cache (' .
498
-					'cache key: ' . $cacheKey . ', ' .
499
-					'cache map key: ' . $textHash . ', ' .
500
-					'value type: ' . gettype( $matches ) . ')'
495
+					'Value of unknown type in object cache ('.
496
+					'cache key: '.$cacheKey.', '.
497
+					'cache map key: '.$textHash.', '.
498
+					'value type: '.gettype($matches).')'
501 499
 				);
502 500
 			}
503 501
 		} else {
504 502
 			$key = 'wikibase.quality.constraints.regex.cache.miss';
505
-			$this->dataFactory->increment( $key );
506
-			return $this->matchesRegularExpressionWithSparql( $text, $regex );
503
+			$this->dataFactory->increment($key);
504
+			return $this->matchesRegularExpressionWithSparql($text, $regex);
507 505
 		}
508 506
 	}
509 507
 
510
-	private function serializeConstraintParameterException( ConstraintParameterException $cpe ) {
508
+	private function serializeConstraintParameterException(ConstraintParameterException $cpe) {
511 509
 		return [
512 510
 			'type' => ConstraintParameterException::class,
513
-			'violationMessage' => $this->violationMessageSerializer->serialize( $cpe->getViolationMessage() ),
511
+			'violationMessage' => $this->violationMessageSerializer->serialize($cpe->getViolationMessage()),
514 512
 		];
515 513
 	}
516 514
 
517
-	private function deserializeConstraintParameterException( array $serialization ) {
515
+	private function deserializeConstraintParameterException(array $serialization) {
518 516
 		$message = $this->violationMessageDeserializer->deserialize(
519 517
 			$serialization['violationMessage']
520 518
 		);
521
-		return new ConstraintParameterException( $message );
519
+		return new ConstraintParameterException($message);
522 520
 	}
523 521
 
524 522
 	/**
@@ -532,25 +530,25 @@  discard block
 block discarded – undo
532 530
 	 * @throws SparqlHelperException if the query times out or some other error occurs
533 531
 	 * @throws ConstraintParameterException if the $regex is invalid
534 532
 	 */
535
-	public function matchesRegularExpressionWithSparql( $text, $regex ) {
536
-		$textStringLiteral = $this->stringLiteral( $text );
537
-		$regexStringLiteral = $this->stringLiteral( '^(?:' . $regex . ')$' );
533
+	public function matchesRegularExpressionWithSparql($text, $regex) {
534
+		$textStringLiteral = $this->stringLiteral($text);
535
+		$regexStringLiteral = $this->stringLiteral('^(?:'.$regex.')$');
538 536
 
539 537
 		$query = <<<EOF
540 538
 SELECT (REGEX($textStringLiteral, $regexStringLiteral) AS ?matches) {}
541 539
 EOF;
542 540
 
543
-		$result = $this->runQuery( $query, false );
541
+		$result = $this->runQuery($query, false);
544 542
 
545 543
 		$vars = $result->getArray()['results']['bindings'][0];
546
-		if ( array_key_exists( 'matches', $vars ) ) {
544
+		if (array_key_exists('matches', $vars)) {
547 545
 			// true or false ⇒ regex okay, text matches or not
548 546
 			return $vars['matches']['value'] === 'true';
549 547
 		} else {
550 548
 			// empty result: regex broken
551 549
 			throw new ConstraintParameterException(
552
-				( new ViolationMessage( 'wbqc-violation-message-parameter-regex' ) )
553
-					->withInlineCode( $regex, Role::CONSTRAINT_PARAMETER_VALUE )
550
+				(new ViolationMessage('wbqc-violation-message-parameter-regex'))
551
+					->withInlineCode($regex, Role::CONSTRAINT_PARAMETER_VALUE)
554 552
 			);
555 553
 		}
556 554
 	}
@@ -562,14 +560,14 @@  discard block
 block discarded – undo
562 560
 	 *
563 561
 	 * @return boolean
564 562
 	 */
565
-	public function isTimeout( $responseContent ) {
566
-		$timeoutRegex = implode( '|', array_map(
567
-			function ( $fqn ) {
568
-				return preg_quote( $fqn, '/' );
563
+	public function isTimeout($responseContent) {
564
+		$timeoutRegex = implode('|', array_map(
565
+			function($fqn) {
566
+				return preg_quote($fqn, '/');
569 567
 			},
570
-			$this->config->get( 'WBQualityConstraintsSparqlTimeoutExceptionClasses' )
571
-		) );
572
-		return (bool)preg_match( '/' . $timeoutRegex . '/', $responseContent );
568
+			$this->config->get('WBQualityConstraintsSparqlTimeoutExceptionClasses')
569
+		));
570
+		return (bool) preg_match('/'.$timeoutRegex.'/', $responseContent);
573 571
 	}
574 572
 
575 573
 	/**
@@ -581,17 +579,17 @@  discard block
 block discarded – undo
581 579
 	 * @return int|boolean the max-age (in seconds)
582 580
 	 * or a plain boolean if no max-age can be determined
583 581
 	 */
584
-	public function getCacheMaxAge( $responseHeaders ) {
582
+	public function getCacheMaxAge($responseHeaders) {
585 583
 		if (
586
-			array_key_exists( 'x-cache-status', $responseHeaders ) &&
587
-			preg_match( '/^hit(?:-.*)?$/', $responseHeaders['x-cache-status'][0] )
584
+			array_key_exists('x-cache-status', $responseHeaders) &&
585
+			preg_match('/^hit(?:-.*)?$/', $responseHeaders['x-cache-status'][0])
588 586
 		) {
589 587
 			$maxage = [];
590 588
 			if (
591
-				array_key_exists( 'cache-control', $responseHeaders ) &&
592
-				preg_match( '/\bmax-age=(\d+)\b/', $responseHeaders['cache-control'][0], $maxage )
589
+				array_key_exists('cache-control', $responseHeaders) &&
590
+				preg_match('/\bmax-age=(\d+)\b/', $responseHeaders['cache-control'][0], $maxage)
593 591
 			) {
594
-				return intval( $maxage[1] );
592
+				return intval($maxage[1]);
595 593
 			} else {
596 594
 				return true;
597 595
 			}
@@ -613,33 +611,33 @@  discard block
 block discarded – undo
613 611
 	 * or SparlHelper::INVALID_RETRY_AFTER if there is something wrong with the format
614 612
 	 *
615 613
 	 */
616
-	public function getThrottling( array $responseHeaders ) {
617
-		if ( !array_key_exists( 'Retry-After', $responseHeaders ) ) {
614
+	public function getThrottling(array $responseHeaders) {
615
+		if (!array_key_exists('Retry-After', $responseHeaders)) {
618 616
 			return self::NO_RETRY_AFTER;
619 617
 		}
620 618
 
621
-		$trimmedRetryAfterValue = trim( $responseHeaders[ 'Retry-After' ] );
622
-		if ( empty( $trimmedRetryAfterValue ) ) {
619
+		$trimmedRetryAfterValue = trim($responseHeaders['Retry-After']);
620
+		if (empty($trimmedRetryAfterValue)) {
623 621
 			return self::EMPTY_RETRY_AFTER;
624 622
 		}
625 623
 
626
-		if ( is_numeric( $trimmedRetryAfterValue ) ) {
627
-			$delaySeconds = (int)$trimmedRetryAfterValue;
628
-			if ( $delaySeconds >= 0 ) {
629
-				return $this->getTimestampInFuture( new DateInterval( 'PT' . $delaySeconds . 'S' ) );
624
+		if (is_numeric($trimmedRetryAfterValue)) {
625
+			$delaySeconds = (int) $trimmedRetryAfterValue;
626
+			if ($delaySeconds >= 0) {
627
+				return $this->getTimestampInFuture(new DateInterval('PT'.$delaySeconds.'S'));
630 628
 			}
631 629
 		} else {
632
-			$return = strtotime( $responseHeaders[ 'Retry-After' ] );
633
-			if ( !empty( $return ) ) {
634
-				return new ConvertibleTimestamp( $return );
630
+			$return = strtotime($responseHeaders['Retry-After']);
631
+			if (!empty($return)) {
632
+				return new ConvertibleTimestamp($return);
635 633
 			}
636 634
 		}
637 635
 		return self::INVALID_RETRY_AFTER;
638 636
 	}
639 637
 
640
-	private function getTimestampInFuture( DateInterval $delta ) {
638
+	private function getTimestampInFuture(DateInterval $delta) {
641 639
 		$now = new ConvertibleTimestamp();
642
-		return new ConvertibleTimestamp( $now->timestamp->add( $delta ) );
640
+		return new ConvertibleTimestamp($now->timestamp->add($delta));
643 641
 	}
644 642
 
645 643
 	/**
@@ -653,97 +651,96 @@  discard block
 block discarded – undo
653 651
 	 *
654 652
 	 * @throws SparqlHelperException if the query times out or some other error occurs
655 653
 	 */
656
-	public function runQuery( $query, $needsPrefixes = true ) {
654
+	public function runQuery($query, $needsPrefixes = true) {
657 655
 
658
-		if ( $this->throttlingLock->isLocked( self::EXPIRY_LOCK_ID ) ) {
659
-			$this->dataFactory->increment( 'wikibase.quality.constraints.sparql.throttling' );
656
+		if ($this->throttlingLock->isLocked(self::EXPIRY_LOCK_ID)) {
657
+			$this->dataFactory->increment('wikibase.quality.constraints.sparql.throttling');
660 658
 			throw new TooManySparqlRequestsException();
661 659
 		}
662 660
 
663
-		$endpoint = $this->config->get( 'WBQualityConstraintsSparqlEndpoint' );
664
-		$maxQueryTimeMillis = $this->config->get( 'WBQualityConstraintsSparqlMaxMillis' );
665
-		$fallbackBlockDuration = (int)$this->config->get( 'WBQualityConstraintsSparqlThrottlingFallbackDuration' );
661
+		$endpoint = $this->config->get('WBQualityConstraintsSparqlEndpoint');
662
+		$maxQueryTimeMillis = $this->config->get('WBQualityConstraintsSparqlMaxMillis');
663
+		$fallbackBlockDuration = (int) $this->config->get('WBQualityConstraintsSparqlThrottlingFallbackDuration');
666 664
 
667
-		if ( $fallbackBlockDuration < 0 ) {
668
-			throw new InvalidArgumentException( 'Fallback duration must be positive int but is: '.
669
-				$fallbackBlockDuration );
665
+		if ($fallbackBlockDuration < 0) {
666
+			throw new InvalidArgumentException('Fallback duration must be positive int but is: '.
667
+				$fallbackBlockDuration);
670 668
 		}
671 669
 
672
-		if ( $this->config->get( 'WBQualityConstraintsSparqlHasWikibaseSupport' ) ) {
670
+		if ($this->config->get('WBQualityConstraintsSparqlHasWikibaseSupport')) {
673 671
 			$needsPrefixes = false;
674 672
 		}
675 673
 
676
-		if ( $needsPrefixes ) {
677
-			$query = $this->prefixes . $query;
674
+		if ($needsPrefixes) {
675
+			$query = $this->prefixes.$query;
678 676
 		}
679
-		$query = "#wbqc\n" . $query;
677
+		$query = "#wbqc\n".$query;
680 678
 
681
-		$url = $endpoint . '?' . http_build_query(
679
+		$url = $endpoint.'?'.http_build_query(
682 680
 			[
683 681
 				'query' => $query,
684 682
 				'format' => 'json',
685 683
 				'maxQueryTimeMillis' => $maxQueryTimeMillis,
686 684
 			],
687
-			null, ini_get( 'arg_separator.output' ),
685
+			null, ini_get('arg_separator.output'),
688 686
 			// encode spaces with %20, not +
689 687
 			PHP_QUERY_RFC3986
690 688
 		);
691 689
 
692 690
 		$options = [
693 691
 			'method' => 'GET',
694
-			'timeout' => (int)round( ( $maxQueryTimeMillis + 1000 ) / 1000 ),
692
+			'timeout' => (int) round(($maxQueryTimeMillis + 1000) / 1000),
695 693
 			'connectTimeout' => 'default',
696 694
 			'userAgent' => $this->defaultUserAgent,
697 695
 		];
698
-		$request = $this->requestFactory->create( $url, $options );
699
-		$startTime = microtime( true );
696
+		$request = $this->requestFactory->create($url, $options);
697
+		$startTime = microtime(true);
700 698
 		$status = $request->execute();
701
-		$endTime = microtime( true );
699
+		$endTime = microtime(true);
702 700
 		$this->dataFactory->timing(
703 701
 			'wikibase.quality.constraints.sparql.timing',
704
-			( $endTime - $startTime ) * 1000
702
+			($endTime - $startTime) * 1000
705 703
 		);
706 704
 
707
-		if ( $request->getStatus() === self::HTTP_TOO_MANY_REQUESTS ) {
708
-			$this->dataFactory->increment( 'wikibase.quality.constraints.sparql.throttling' );
709
-			$throttlingUntil = $this->getThrottling( $request->getResponseHeaders() );
710
-			if ( !( $throttlingUntil instanceof ConvertibleTimestamp ) ) {
711
-				$this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterInvalid( $request );
705
+		if ($request->getStatus() === self::HTTP_TOO_MANY_REQUESTS) {
706
+			$this->dataFactory->increment('wikibase.quality.constraints.sparql.throttling');
707
+			$throttlingUntil = $this->getThrottling($request->getResponseHeaders());
708
+			if (!($throttlingUntil instanceof ConvertibleTimestamp)) {
709
+				$this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterInvalid($request);
712 710
 				$this->throttlingLock->lock(
713 711
 					self::EXPIRY_LOCK_ID,
714
-					$this->getTimestampInFuture( new DateInterval( 'PT' . $fallbackBlockDuration . 'S' ) )
712
+					$this->getTimestampInFuture(new DateInterval('PT'.$fallbackBlockDuration.'S'))
715 713
 				);
716 714
 			} else {
717
-				$this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterPresent( $throttlingUntil, $request );
718
-				$this->throttlingLock->lock( self::EXPIRY_LOCK_ID, $throttlingUntil );
715
+				$this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterPresent($throttlingUntil, $request);
716
+				$this->throttlingLock->lock(self::EXPIRY_LOCK_ID, $throttlingUntil);
719 717
 			}
720 718
 			throw new TooManySparqlRequestsException();
721 719
 		}
722 720
 
723
-		$maxAge = $this->getCacheMaxAge( $request->getResponseHeaders() );
724
-		if ( $maxAge ) {
725
-			$this->dataFactory->increment( 'wikibase.quality.constraints.sparql.cached' );
721
+		$maxAge = $this->getCacheMaxAge($request->getResponseHeaders());
722
+		if ($maxAge) {
723
+			$this->dataFactory->increment('wikibase.quality.constraints.sparql.cached');
726 724
 		}
727 725
 
728
-		if ( $status->isOK() ) {
726
+		if ($status->isOK()) {
729 727
 			$json = $request->getContent();
730
-			$arr = json_decode( $json, true );
728
+			$arr = json_decode($json, true);
731 729
 			return new CachedQueryResults(
732 730
 				$arr,
733 731
 				Metadata::ofCachingMetadata(
734 732
 					$maxAge ?
735
-						CachingMetadata::ofMaximumAgeInSeconds( $maxAge ) :
736
-						CachingMetadata::fresh()
733
+						CachingMetadata::ofMaximumAgeInSeconds($maxAge) : CachingMetadata::fresh()
737 734
 				)
738 735
 			);
739 736
 		} else {
740
-			$this->dataFactory->increment( 'wikibase.quality.constraints.sparql.error' );
737
+			$this->dataFactory->increment('wikibase.quality.constraints.sparql.error');
741 738
 
742 739
 			$this->dataFactory->increment(
743 740
 				"wikibase.quality.constraints.sparql.error.http.{$request->getStatus()}"
744 741
 			);
745 742
 
746
-			if ( $this->isTimeout( $request->getContent() ) ) {
743
+			if ($this->isTimeout($request->getContent())) {
747 744
 				$this->dataFactory->increment(
748 745
 					'wikibase.quality.constraints.sparql.error.timeout'
749 746
 				);
Please login to merge, or discard this patch.