Completed
Push — master ( e6a942...f6c8aa )
by
unknown
44s queued 12s
created
src/ConstraintCheck/DelegatingConstraintChecker.php 1 patch
Spacing   +160 added lines, -160 removed lines patch added patch discarded remove patch
@@ -144,10 +144,10 @@  discard block
 block discarded – undo
144 144
 		callable $defaultResultsPerEntity = null
145 145
 	) {
146 146
 		$checkResults = [];
147
-		$entity = $this->entityLookup->getEntity( $entityId );
147
+		$entity = $this->entityLookup->getEntity($entityId);
148 148
 
149
-		if ( $entity instanceof StatementListProvidingEntity ) {
150
-			$startTime = microtime( true );
149
+		if ($entity instanceof StatementListProvidingEntity) {
150
+			$startTime = microtime(true);
151 151
 
152 152
 			$checkResults = $this->checkEveryStatement(
153 153
 				$entity,
@@ -155,9 +155,9 @@  discard block
 block discarded – undo
155 155
 				$defaultResultsPerContext
156 156
 			);
157 157
 
158
-			$endTime = microtime( true );
158
+			$endTime = microtime(true);
159 159
 
160
-			if ( $constraintIds === null ) { // only log full constraint checks
160
+			if ($constraintIds === null) { // only log full constraint checks
161 161
 				$this->loggingHelper->logConstraintCheckOnEntity(
162 162
 					$entityId,
163 163
 					$checkResults,
@@ -167,11 +167,11 @@  discard block
 block discarded – undo
167 167
 			}
168 168
 		}
169 169
 
170
-		if ( $defaultResultsPerEntity !== null ) {
171
-			$checkResults = array_merge( $defaultResultsPerEntity( $entityId ), $checkResults );
170
+		if ($defaultResultsPerEntity !== null) {
171
+			$checkResults = array_merge($defaultResultsPerEntity($entityId), $checkResults);
172 172
 		}
173 173
 
174
-		return $this->sortResult( $checkResults );
174
+		return $this->sortResult($checkResults);
175 175
 	}
176 176
 
177 177
 	/**
@@ -193,19 +193,19 @@  discard block
 block discarded – undo
193 193
 		callable $defaultResults = null
194 194
 	) {
195 195
 
196
-		$parsedGuid = $this->statementGuidParser->parse( $guid );
196
+		$parsedGuid = $this->statementGuidParser->parse($guid);
197 197
 		$entityId = $parsedGuid->getEntityId();
198
-		$entity = $this->entityLookup->getEntity( $entityId );
199
-		if ( $entity instanceof StatementListProvidingEntity ) {
200
-			$statement = $entity->getStatements()->getFirstStatementWithGuid( $guid );
201
-			if ( $statement ) {
198
+		$entity = $this->entityLookup->getEntity($entityId);
199
+		if ($entity instanceof StatementListProvidingEntity) {
200
+			$statement = $entity->getStatements()->getFirstStatementWithGuid($guid);
201
+			if ($statement) {
202 202
 				$result = $this->checkStatement(
203 203
 					$entity,
204 204
 					$statement,
205 205
 					$constraintIds,
206 206
 					$defaultResults
207 207
 				);
208
-				$output = $this->sortResult( $result );
208
+				$output = $this->sortResult($result);
209 209
 				return $output;
210 210
 			}
211 211
 		}
@@ -213,8 +213,8 @@  discard block
 block discarded – undo
213 213
 		return [];
214 214
 	}
215 215
 
216
-	private function getValidContextTypes( Constraint $constraint ) {
217
-		if ( !array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) {
216
+	private function getValidContextTypes(Constraint $constraint) {
217
+		if (!array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) {
218 218
 			return [
219 219
 				Context::TYPE_STATEMENT,
220 220
 				Context::TYPE_QUALIFIER,
@@ -222,25 +222,25 @@  discard block
 block discarded – undo
222 222
 			];
223 223
 		}
224 224
 
225
-		return array_keys( array_filter(
225
+		return array_keys(array_filter(
226 226
 			$this->checkerMap[$constraint->getConstraintTypeItemId()]->getSupportedContextTypes(),
227
-			static function ( $resultStatus ) {
227
+			static function($resultStatus) {
228 228
 				return $resultStatus !== CheckResult::STATUS_NOT_IN_SCOPE;
229 229
 			}
230
-		) );
230
+		));
231 231
 	}
232 232
 
233
-	private function getValidEntityTypes( Constraint $constraint ) {
234
-		if ( !array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) {
235
-			return array_keys( ConstraintChecker::ALL_ENTITY_TYPES_SUPPORTED );
233
+	private function getValidEntityTypes(Constraint $constraint) {
234
+		if (!array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) {
235
+			return array_keys(ConstraintChecker::ALL_ENTITY_TYPES_SUPPORTED);
236 236
 		}
237 237
 
238
-		return array_keys( array_filter(
238
+		return array_keys(array_filter(
239 239
 			$this->checkerMap[$constraint->getConstraintTypeItemId()]->getSupportedEntityTypes(),
240
-			static function ( $resultStatus ) {
240
+			static function($resultStatus) {
241 241
 				return $resultStatus !== CheckResult::STATUS_NOT_IN_SCOPE;
242 242
 			}
243
-		) );
243
+		));
244 244
 	}
245 245
 
246 246
 	/**
@@ -251,33 +251,33 @@  discard block
 block discarded – undo
251 251
 	 *
252 252
 	 * @return ConstraintParameterException[]
253 253
 	 */
254
-	private function checkCommonConstraintParameters( Constraint $constraint ) {
254
+	private function checkCommonConstraintParameters(Constraint $constraint) {
255 255
 		$constraintParameters = $constraint->getConstraintParameters();
256 256
 		try {
257
-			$this->constraintParameterParser->checkError( $constraintParameters );
258
-		} catch ( ConstraintParameterException $e ) {
259
-			return [ $e ];
257
+			$this->constraintParameterParser->checkError($constraintParameters);
258
+		} catch (ConstraintParameterException $e) {
259
+			return [$e];
260 260
 		}
261 261
 
262 262
 		$problems = [];
263 263
 		try {
264
-			$this->constraintParameterParser->parseExceptionParameter( $constraintParameters );
265
-		} catch ( ConstraintParameterException $e ) {
264
+			$this->constraintParameterParser->parseExceptionParameter($constraintParameters);
265
+		} catch (ConstraintParameterException $e) {
266 266
 			$problems[] = $e;
267 267
 		}
268 268
 		try {
269
-			$this->constraintParameterParser->parseConstraintStatusParameter( $constraintParameters );
270
-		} catch ( ConstraintParameterException $e ) {
269
+			$this->constraintParameterParser->parseConstraintStatusParameter($constraintParameters);
270
+		} catch (ConstraintParameterException $e) {
271 271
 			$problems[] = $e;
272 272
 		}
273 273
 		try {
274 274
 			$this->constraintParameterParser->parseConstraintScopeParameters(
275 275
 				$constraintParameters,
276 276
 				$constraint->getConstraintTypeItemId(),
277
-				$this->getValidContextTypes( $constraint ),
278
-				$this->getValidEntityTypes( $constraint )
277
+				$this->getValidContextTypes($constraint),
278
+				$this->getValidEntityTypes($constraint)
279 279
 			);
280
-		} catch ( ConstraintParameterException $e ) {
280
+		} catch (ConstraintParameterException $e) {
281 281
 			$problems[] = $e;
282 282
 		}
283 283
 		return $problems;
@@ -290,16 +290,16 @@  discard block
 block discarded – undo
290 290
 	 * @return ConstraintParameterException[][] first level indexed by constraint ID,
291 291
 	 * second level like checkConstraintParametersOnConstraintId (but without possibility of null)
292 292
 	 */
293
-	public function checkConstraintParametersOnPropertyId( NumericPropertyId $propertyId ) {
294
-		$constraints = $this->constraintLookup->queryConstraintsForProperty( $propertyId );
293
+	public function checkConstraintParametersOnPropertyId(NumericPropertyId $propertyId) {
294
+		$constraints = $this->constraintLookup->queryConstraintsForProperty($propertyId);
295 295
 		$result = [];
296 296
 
297
-		foreach ( $constraints as $constraint ) {
298
-			$problems = $this->checkCommonConstraintParameters( $constraint );
297
+		foreach ($constraints as $constraint) {
298
+			$problems = $this->checkCommonConstraintParameters($constraint);
299 299
 
300
-			if ( array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) {
300
+			if (array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) {
301 301
 				$checker = $this->checkerMap[$constraint->getConstraintTypeItemId()];
302
-				$problems = array_merge( $problems, $checker->checkConstraintParameters( $constraint ) );
302
+				$problems = array_merge($problems, $checker->checkConstraintParameters($constraint));
303 303
 			}
304 304
 
305 305
 			$result[$constraint->getConstraintId()] = $problems;
@@ -316,18 +316,18 @@  discard block
 block discarded – undo
316 316
 	 * @return ConstraintParameterException[]|null list of constraint parameter exceptions
317 317
 	 * (empty means all parameters okay), or null if constraint is not found
318 318
 	 */
319
-	public function checkConstraintParametersOnConstraintId( $constraintId ) {
320
-		$propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId();
319
+	public function checkConstraintParametersOnConstraintId($constraintId) {
320
+		$propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId();
321 321
 		'@phan-var NumericPropertyId $propertyId';
322
-		$constraints = $this->constraintLookup->queryConstraintsForProperty( $propertyId );
322
+		$constraints = $this->constraintLookup->queryConstraintsForProperty($propertyId);
323 323
 
324
-		foreach ( $constraints as $constraint ) {
325
-			if ( $constraint->getConstraintId() === $constraintId ) {
326
-				$problems = $this->checkCommonConstraintParameters( $constraint );
324
+		foreach ($constraints as $constraint) {
325
+			if ($constraint->getConstraintId() === $constraintId) {
326
+				$problems = $this->checkCommonConstraintParameters($constraint);
327 327
 
328
-				if ( array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) {
328
+				if (array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) {
329 329
 					$checker = $this->checkerMap[$constraint->getConstraintTypeItemId()];
330
-					$problems = array_merge( $problems, $checker->checkConstraintParameters( $constraint ) );
330
+					$problems = array_merge($problems, $checker->checkConstraintParameters($constraint));
331 331
 				}
332 332
 
333 333
 				return $problems;
@@ -352,14 +352,14 @@  discard block
 block discarded – undo
352 352
 		$result = [];
353 353
 
354 354
 		/** @var Statement $statement */
355
-		foreach ( $entity->getStatements() as $statement ) {
356
-			$result = array_merge( $result,
355
+		foreach ($entity->getStatements() as $statement) {
356
+			$result = array_merge($result,
357 357
 				$this->checkStatement(
358 358
 					$entity,
359 359
 					$statement,
360 360
 					$constraintIds,
361 361
 					$defaultResultsPerContext
362
-				) );
362
+				));
363 363
 		}
364 364
 
365 365
 		return $result;
@@ -381,32 +381,32 @@  discard block
 block discarded – undo
381 381
 	) {
382 382
 		$result = [];
383 383
 
384
-		$result = array_merge( $result,
384
+		$result = array_merge($result,
385 385
 			$this->checkConstraintsForMainSnak(
386 386
 				$entity,
387 387
 				$statement,
388 388
 				$constraintIds,
389 389
 				$defaultResultsPerContext
390
-			) );
390
+			));
391 391
 
392
-		if ( $this->checkQualifiers ) {
393
-			$result = array_merge( $result,
392
+		if ($this->checkQualifiers) {
393
+			$result = array_merge($result,
394 394
 				$this->checkConstraintsForQualifiers(
395 395
 					$entity,
396 396
 					$statement,
397 397
 					$constraintIds,
398 398
 					$defaultResultsPerContext
399
-				) );
399
+				));
400 400
 		}
401 401
 
402
-		if ( $this->checkReferences ) {
403
-			$result = array_merge( $result,
402
+		if ($this->checkReferences) {
403
+			$result = array_merge($result,
404 404
 				$this->checkConstraintsForReferences(
405 405
 					$entity,
406 406
 					$statement,
407 407
 					$constraintIds,
408 408
 					$defaultResultsPerContext
409
-				) );
409
+				));
410 410
 		}
411 411
 
412 412
 		return $result;
@@ -421,17 +421,17 @@  discard block
 block discarded – undo
421 421
 	 * @param string[]|null $constraintIds
422 422
 	 * @return Constraint[]
423 423
 	 */
424
-	private function getConstraintsToUse( PropertyId $propertyId, array $constraintIds = null ) {
425
-		if ( !( $propertyId instanceof NumericPropertyId ) ) {
424
+	private function getConstraintsToUse(PropertyId $propertyId, array $constraintIds = null) {
425
+		if (!($propertyId instanceof NumericPropertyId)) {
426 426
 			throw new InvalidArgumentException(
427
-				'Non-numeric property ID not supported:' . $propertyId->getSerialization()
427
+				'Non-numeric property ID not supported:'.$propertyId->getSerialization()
428 428
 			);
429 429
 		}
430
-		$constraints = $this->constraintLookup->queryConstraintsForProperty( $propertyId );
431
-		if ( $constraintIds !== null ) {
430
+		$constraints = $this->constraintLookup->queryConstraintsForProperty($propertyId);
431
+		if ($constraintIds !== null) {
432 432
 			$constraintsToUse = [];
433
-			foreach ( $constraints as $constraint ) {
434
-				if ( in_array( $constraint->getConstraintId(), $constraintIds ) ) {
433
+			foreach ($constraints as $constraint) {
434
+				if (in_array($constraint->getConstraintId(), $constraintIds)) {
435 435
 					$constraintsToUse[] = $constraint;
436 436
 				}
437 437
 			}
@@ -455,18 +455,18 @@  discard block
 block discarded – undo
455 455
 		array $constraintIds = null,
456 456
 		callable $defaultResults = null
457 457
 	) {
458
-		$context = new MainSnakContext( $entity, $statement );
458
+		$context = new MainSnakContext($entity, $statement);
459 459
 		$constraints = $this->getConstraintsToUse(
460 460
 			$statement->getPropertyId(),
461 461
 			$constraintIds
462 462
 		);
463
-		$result = $defaultResults !== null ? $defaultResults( $context ) : [];
463
+		$result = $defaultResults !== null ? $defaultResults($context) : [];
464 464
 
465
-		foreach ( $constraints as $constraint ) {
465
+		foreach ($constraints as $constraint) {
466 466
 			$parameters = $constraint->getConstraintParameters();
467 467
 			try {
468
-				$exceptions = $this->constraintParameterParser->parseExceptionParameter( $parameters );
469
-			} catch ( ConstraintParameterException $e ) {
468
+				$exceptions = $this->constraintParameterParser->parseExceptionParameter($parameters);
469
+			} catch (ConstraintParameterException $e) {
470 470
 				$result[] = new CheckResult(
471 471
 					$context,
472 472
 					$constraint,
@@ -476,13 +476,13 @@  discard block
 block discarded – undo
476 476
 				continue;
477 477
 			}
478 478
 
479
-			if ( in_array( $entity->getId(), $exceptions ) ) {
480
-				$message = new ViolationMessage( 'wbqc-violation-message-exception' );
481
-				$result[] = new CheckResult( $context, $constraint, [], CheckResult::STATUS_EXCEPTION, $message );
479
+			if (in_array($entity->getId(), $exceptions)) {
480
+				$message = new ViolationMessage('wbqc-violation-message-exception');
481
+				$result[] = new CheckResult($context, $constraint, [], CheckResult::STATUS_EXCEPTION, $message);
482 482
 				continue;
483 483
 			}
484 484
 
485
-			$result[] = $this->getCheckResultFor( $context, $constraint );
485
+			$result[] = $this->getCheckResultFor($context, $constraint);
486 486
 		}
487 487
 
488 488
 		return $result;
@@ -504,24 +504,24 @@  discard block
 block discarded – undo
504 504
 	) {
505 505
 		$result = [];
506 506
 
507
-		if ( in_array(
507
+		if (in_array(
508 508
 			$statement->getPropertyId()->getSerialization(),
509 509
 			$this->propertiesWithViolatingQualifiers
510
-		) ) {
510
+		)) {
511 511
 			return $result;
512 512
 		}
513 513
 
514
-		foreach ( $statement->getQualifiers() as $qualifier ) {
515
-			$qualifierContext = new QualifierContext( $entity, $statement, $qualifier );
516
-			if ( $defaultResultsPerContext !== null ) {
517
-				$result = array_merge( $result, $defaultResultsPerContext( $qualifierContext ) );
514
+		foreach ($statement->getQualifiers() as $qualifier) {
515
+			$qualifierContext = new QualifierContext($entity, $statement, $qualifier);
516
+			if ($defaultResultsPerContext !== null) {
517
+				$result = array_merge($result, $defaultResultsPerContext($qualifierContext));
518 518
 			}
519 519
 			$qualifierConstraints = $this->getConstraintsToUse(
520 520
 				$qualifierContext->getSnak()->getPropertyId(),
521 521
 				$constraintIds
522 522
 			);
523
-			foreach ( $qualifierConstraints as $qualifierConstraint ) {
524
-				$result[] = $this->getCheckResultFor( $qualifierContext, $qualifierConstraint );
523
+			foreach ($qualifierConstraints as $qualifierConstraint) {
524
+				$result[] = $this->getCheckResultFor($qualifierContext, $qualifierConstraint);
525 525
 			}
526 526
 		}
527 527
 
@@ -545,19 +545,19 @@  discard block
 block discarded – undo
545 545
 		$result = [];
546 546
 
547 547
 		/** @var Reference $reference */
548
-		foreach ( $statement->getReferences() as $reference ) {
549
-			foreach ( $reference->getSnaks() as $snak ) {
548
+		foreach ($statement->getReferences() as $reference) {
549
+			foreach ($reference->getSnaks() as $snak) {
550 550
 				$referenceContext = new ReferenceContext(
551 551
 					$entity, $statement, $reference, $snak
552 552
 				);
553
-				if ( $defaultResultsPerContext !== null ) {
554
-					$result = array_merge( $result, $defaultResultsPerContext( $referenceContext ) );
553
+				if ($defaultResultsPerContext !== null) {
554
+					$result = array_merge($result, $defaultResultsPerContext($referenceContext));
555 555
 				}
556 556
 				$referenceConstraints = $this->getConstraintsToUse(
557 557
 					$referenceContext->getSnak()->getPropertyId(),
558 558
 					$constraintIds
559 559
 				);
560
-				foreach ( $referenceConstraints as $referenceConstraint ) {
560
+				foreach ($referenceConstraints as $referenceConstraint) {
561 561
 					$result[] = $this->getCheckResultFor(
562 562
 						$referenceContext,
563 563
 						$referenceConstraint
@@ -576,20 +576,20 @@  discard block
 block discarded – undo
576 576
 	 * @throws InvalidArgumentException
577 577
 	 * @return CheckResult
578 578
 	 */
579
-	private function getCheckResultFor( Context $context, Constraint $constraint ) {
580
-		if ( array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) {
579
+	private function getCheckResultFor(Context $context, Constraint $constraint) {
580
+		if (array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) {
581 581
 			$checker = $this->checkerMap[$constraint->getConstraintTypeItemId()];
582
-			$result = $this->handleScope( $checker, $context, $constraint );
582
+			$result = $this->handleScope($checker, $context, $constraint);
583 583
 
584
-			if ( $result !== null ) {
585
-				$this->addMetadata( $context, $result );
584
+			if ($result !== null) {
585
+				$this->addMetadata($context, $result);
586 586
 				return $result;
587 587
 			}
588 588
 
589
-			$startTime = microtime( true );
589
+			$startTime = microtime(true);
590 590
 			try {
591
-				$result = $checker->checkConstraint( $context, $constraint );
592
-			} catch ( ConstraintParameterException $e ) {
591
+				$result = $checker->checkConstraint($context, $constraint);
592
+			} catch (ConstraintParameterException $e) {
593 593
 				$result = new CheckResult(
594 594
 					$context,
595 595
 					$constraint,
@@ -597,28 +597,28 @@  discard block
 block discarded – undo
597 597
 					CheckResult::STATUS_BAD_PARAMETERS,
598 598
 					$e->getViolationMessage()
599 599
 				);
600
-			} catch ( SparqlHelperException $e ) {
601
-				$message = new ViolationMessage( 'wbqc-violation-message-sparql-error' );
602
-				$result = new CheckResult( $context, $constraint, [], CheckResult::STATUS_TODO, $message );
600
+			} catch (SparqlHelperException $e) {
601
+				$message = new ViolationMessage('wbqc-violation-message-sparql-error');
602
+				$result = new CheckResult($context, $constraint, [], CheckResult::STATUS_TODO, $message);
603 603
 			}
604
-			$endTime = microtime( true );
604
+			$endTime = microtime(true);
605 605
 
606
-			$this->addMetadata( $context, $result );
606
+			$this->addMetadata($context, $result);
607 607
 
608
-			$this->downgradeResultStatus( $context, $result );
608
+			$this->downgradeResultStatus($context, $result);
609 609
 
610 610
 			$this->loggingHelper->logConstraintCheck(
611 611
 				$context,
612 612
 				$constraint,
613 613
 				$result,
614
-				get_class( $checker ),
614
+				get_class($checker),
615 615
 				$endTime - $startTime,
616 616
 				__METHOD__
617 617
 			);
618 618
 
619 619
 			return $result;
620 620
 		} else {
621
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_TODO, null );
621
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_TODO, null);
622 622
 		}
623 623
 	}
624 624
 
@@ -627,84 +627,84 @@  discard block
 block discarded – undo
627 627
 		Context $context,
628 628
 		Constraint $constraint
629 629
 	): ?CheckResult {
630
-		$validContextTypes = $this->getValidContextTypes( $constraint );
631
-		$validEntityTypes = $this->getValidEntityTypes( $constraint );
630
+		$validContextTypes = $this->getValidContextTypes($constraint);
631
+		$validEntityTypes = $this->getValidEntityTypes($constraint);
632 632
 		try {
633
-			[ $checkedContextTypes, $checkedEntityTypes ] = $this->constraintParameterParser->parseConstraintScopeParameters(
633
+			[$checkedContextTypes, $checkedEntityTypes] = $this->constraintParameterParser->parseConstraintScopeParameters(
634 634
 				$constraint->getConstraintParameters(),
635 635
 				$constraint->getConstraintTypeItemId(),
636 636
 				$validContextTypes,
637 637
 				$validEntityTypes
638 638
 			);
639
-		} catch ( ConstraintParameterException $e ) {
640
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage() );
639
+		} catch (ConstraintParameterException $e) {
640
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage());
641 641
 		}
642 642
 
643
-		if ( $checkedContextTypes === null ) {
643
+		if ($checkedContextTypes === null) {
644 644
 			$checkedContextTypes = $checker->getDefaultContextTypes();
645 645
 		}
646 646
 		$contextType = $context->getType();
647
-		if ( !in_array( $contextType, $checkedContextTypes ) ) {
648
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_NOT_IN_SCOPE, null );
647
+		if (!in_array($contextType, $checkedContextTypes)) {
648
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_NOT_IN_SCOPE, null);
649 649
 		}
650
-		if ( $checker->getSupportedContextTypes()[$contextType] === CheckResult::STATUS_TODO ) {
651
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_TODO, null );
650
+		if ($checker->getSupportedContextTypes()[$contextType] === CheckResult::STATUS_TODO) {
651
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_TODO, null);
652 652
 		}
653 653
 
654
-		if ( $checkedEntityTypes === null ) {
654
+		if ($checkedEntityTypes === null) {
655 655
 			$checkedEntityTypes = $validEntityTypes;
656 656
 		}
657 657
 		$entityType = $context->getEntity()->getType();
658
-		if ( !in_array( $entityType, $checkedEntityTypes ) ) {
659
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_NOT_IN_SCOPE, null );
658
+		if (!in_array($entityType, $checkedEntityTypes)) {
659
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_NOT_IN_SCOPE, null);
660 660
 		}
661
-		if ( $checker->getSupportedEntityTypes()[$entityType] === CheckResult::STATUS_TODO ) {
662
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_TODO, null );
661
+		if ($checker->getSupportedEntityTypes()[$entityType] === CheckResult::STATUS_TODO) {
662
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_TODO, null);
663 663
 		}
664 664
 
665 665
 		return null;
666 666
 	}
667 667
 
668
-	private function addMetadata( Context $context, CheckResult $result ) {
669
-		$result->withMetadata( Metadata::merge( [
668
+	private function addMetadata(Context $context, CheckResult $result) {
669
+		$result->withMetadata(Metadata::merge([
670 670
 			$result->getMetadata(),
671
-			Metadata::ofDependencyMetadata( DependencyMetadata::merge( [
672
-				DependencyMetadata::ofEntityId( $context->getEntity()->getId() ),
673
-				DependencyMetadata::ofEntityId( $result->getConstraint()->getPropertyId() ),
674
-			] ) ),
675
-		] ) );
671
+			Metadata::ofDependencyMetadata(DependencyMetadata::merge([
672
+				DependencyMetadata::ofEntityId($context->getEntity()->getId()),
673
+				DependencyMetadata::ofEntityId($result->getConstraint()->getPropertyId()),
674
+			])),
675
+		]));
676 676
 	}
677 677
 
678
-	private function downgradeResultStatus( Context $context, CheckResult &$result ) {
678
+	private function downgradeResultStatus(Context $context, CheckResult & $result) {
679 679
 		$constraint = $result->getConstraint();
680 680
 		try {
681 681
 			$constraintStatus = $this->constraintParameterParser
682
-				->parseConstraintStatusParameter( $constraint->getConstraintParameters() );
683
-		} catch ( ConstraintParameterException $e ) {
684
-			$result = new CheckResult( $context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage() );
682
+				->parseConstraintStatusParameter($constraint->getConstraintParameters());
683
+		} catch (ConstraintParameterException $e) {
684
+			$result = new CheckResult($context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage());
685 685
 			$constraintStatus = null;
686 686
 		}
687
-		if ( $constraintStatus === null ) {
687
+		if ($constraintStatus === null) {
688 688
 			// downgrade violation to warning
689
-			if ( $result->getStatus() === CheckResult::STATUS_VIOLATION ) {
690
-				$result->setStatus( CheckResult::STATUS_WARNING );
689
+			if ($result->getStatus() === CheckResult::STATUS_VIOLATION) {
690
+				$result->setStatus(CheckResult::STATUS_WARNING);
691 691
 			}
692
-		} elseif ( $constraintStatus === 'suggestion' ) {
692
+		} elseif ($constraintStatus === 'suggestion') {
693 693
 			// downgrade violation to suggestion
694
-			if ( $result->getStatus() === CheckResult::STATUS_VIOLATION ) {
695
-				$result->setStatus( CheckResult::STATUS_SUGGESTION );
694
+			if ($result->getStatus() === CheckResult::STATUS_VIOLATION) {
695
+				$result->setStatus(CheckResult::STATUS_SUGGESTION);
696 696
 			}
697
-			$result->addParameter( 'constraint_status', $constraintStatus );
697
+			$result->addParameter('constraint_status', $constraintStatus);
698 698
 		} else {
699
-			if ( $constraintStatus !== 'mandatory' ) {
699
+			if ($constraintStatus !== 'mandatory') {
700 700
 				// @codeCoverageIgnoreStart
701 701
 				throw new LogicException(
702
-					"Unknown constraint status '$constraintStatus', " .
702
+					"Unknown constraint status '$constraintStatus', ".
703 703
 					"only known statuses are 'mandatory' and 'suggestion'"
704 704
 				);
705 705
 				// @codeCoverageIgnoreEnd
706 706
 			}
707
-			$result->addParameter( 'constraint_status', $constraintStatus );
707
+			$result->addParameter('constraint_status', $constraintStatus);
708 708
 		}
709 709
 	}
710 710
 
@@ -713,12 +713,12 @@  discard block
 block discarded – undo
713 713
 	 *
714 714
 	 * @return CheckResult[]
715 715
 	 */
716
-	private function sortResult( array $result ) {
717
-		if ( count( $result ) < 2 ) {
716
+	private function sortResult(array $result) {
717
+		if (count($result) < 2) {
718 718
 			return $result;
719 719
 		}
720 720
 
721
-		$sortFunction = static function ( CheckResult $a, CheckResult $b ) {
721
+		$sortFunction = static function(CheckResult $a, CheckResult $b) {
722 722
 			$orderNum = 0;
723 723
 			$order = [
724 724
 				CheckResult::STATUS_BAD_PARAMETERS => $orderNum++,
@@ -735,55 +735,55 @@  discard block
 block discarded – undo
735 735
 			$statusA = $a->getStatus();
736 736
 			$statusB = $b->getStatus();
737 737
 
738
-			$orderA = array_key_exists( $statusA, $order ) ? $order[ $statusA ] : $order[ 'other' ];
739
-			$orderB = array_key_exists( $statusB, $order ) ? $order[ $statusB ] : $order[ 'other' ];
738
+			$orderA = array_key_exists($statusA, $order) ? $order[$statusA] : $order['other'];
739
+			$orderB = array_key_exists($statusB, $order) ? $order[$statusB] : $order['other'];
740 740
 
741
-			if ( $orderA === $orderB ) {
741
+			if ($orderA === $orderB) {
742 742
 				$cursorA = $a->getContextCursor();
743 743
 				$cursorB = $b->getContextCursor();
744 744
 
745
-				if ( $cursorA instanceof EntityContextCursor ) {
745
+				if ($cursorA instanceof EntityContextCursor) {
746 746
 					return $cursorB instanceof EntityContextCursor ? 0 : -1;
747 747
 				}
748
-				if ( $cursorB instanceof EntityContextCursor ) {
748
+				if ($cursorB instanceof EntityContextCursor) {
749 749
 					return $cursorA instanceof EntityContextCursor ? 0 : 1;
750 750
 				}
751 751
 
752 752
 				$pidA = $cursorA->getSnakPropertyId();
753 753
 				$pidB = $cursorB->getSnakPropertyId();
754 754
 
755
-				if ( $pidA === $pidB ) {
755
+				if ($pidA === $pidB) {
756 756
 					$hashA = $cursorA->getSnakHash();
757 757
 					$hashB = $cursorB->getSnakHash();
758 758
 
759
-					if ( $hashA === $hashB ) {
760
-						if ( $a instanceof NullResult ) {
759
+					if ($hashA === $hashB) {
760
+						if ($a instanceof NullResult) {
761 761
 							return $b instanceof NullResult ? 0 : -1;
762 762
 						}
763
-						if ( $b instanceof NullResult ) {
763
+						if ($b instanceof NullResult) {
764 764
 							return $a instanceof NullResult ? 0 : 1;
765 765
 						}
766 766
 
767 767
 						$typeA = $a->getConstraint()->getConstraintTypeItemId();
768 768
 						$typeB = $b->getConstraint()->getConstraintTypeItemId();
769 769
 
770
-						if ( $typeA == $typeB ) {
770
+						if ($typeA == $typeB) {
771 771
 							return 0;
772 772
 						} else {
773
-							return ( $typeA > $typeB ) ? 1 : -1;
773
+							return ($typeA > $typeB) ? 1 : -1;
774 774
 						}
775 775
 					} else {
776
-						return ( $hashA > $hashB ) ? 1 : -1;
776
+						return ($hashA > $hashB) ? 1 : -1;
777 777
 					}
778 778
 				} else {
779
-					return ( $pidA > $pidB ) ? 1 : -1;
779
+					return ($pidA > $pidB) ? 1 : -1;
780 780
 				}
781 781
 			} else {
782
-				return ( $orderA > $orderB ) ? 1 : -1;
782
+				return ($orderA > $orderB) ? 1 : -1;
783 783
 			}
784 784
 		};
785 785
 
786
-		uasort( $result, $sortFunction );
786
+		uasort($result, $sortFunction);
787 787
 
788 788
 		return $result;
789 789
 	}
Please login to merge, or discard this patch.
src/ServiceWiring.php 1 patch
Spacing   +140 added lines, -140 removed lines patch added patch discarded remove patch
@@ -29,53 +29,53 @@  discard block
 block discarded – undo
29 29
 use WikiMap;
30 30
 
31 31
 return [
32
-	ConstraintsServices::EXPIRY_LOCK => static function ( MediaWikiServices $services ) {
33
-		return new ExpiryLock( ObjectCache::getInstance( CACHE_ANYTHING ) );
32
+	ConstraintsServices::EXPIRY_LOCK => static function(MediaWikiServices $services) {
33
+		return new ExpiryLock(ObjectCache::getInstance(CACHE_ANYTHING));
34 34
 	},
35 35
 
36
-	ConstraintsServices::LOGGING_HELPER => static function ( MediaWikiServices $services ) {
36
+	ConstraintsServices::LOGGING_HELPER => static function(MediaWikiServices $services) {
37 37
 		return new LoggingHelper(
38 38
 			$services->getStatsdDataFactory(),
39
-			LoggerFactory::getInstance( 'WikibaseQualityConstraints' ),
39
+			LoggerFactory::getInstance('WikibaseQualityConstraints'),
40 40
 			$services->getMainConfig()
41 41
 		);
42 42
 	},
43 43
 
44
-	ConstraintsServices::CONSTRAINT_STORE => static function ( MediaWikiServices $services ) {
45
-		$sourceDefinitions = WikibaseRepo::getEntitySourceDefinitions( $services );
46
-		$propertySource = $sourceDefinitions->getDatabaseSourceForEntityType( Property::ENTITY_TYPE );
47
-		if ( $propertySource === null ) {
48
-			throw new RuntimeException( 'Can\'t get a ConstraintStore for properties not stored in a database.' );
44
+	ConstraintsServices::CONSTRAINT_STORE => static function(MediaWikiServices $services) {
45
+		$sourceDefinitions = WikibaseRepo::getEntitySourceDefinitions($services);
46
+		$propertySource = $sourceDefinitions->getDatabaseSourceForEntityType(Property::ENTITY_TYPE);
47
+		if ($propertySource === null) {
48
+			throw new RuntimeException('Can\'t get a ConstraintStore for properties not stored in a database.');
49 49
 		}
50 50
 
51
-		$localEntitySourceName = WikibaseRepo::getLocalEntitySource( $services )->getSourceName();
52
-		if ( $propertySource->getSourceName() !== $localEntitySourceName ) {
53
-			throw new RuntimeException( 'Can\'t get a ConstraintStore for a non local entity source.' );
51
+		$localEntitySourceName = WikibaseRepo::getLocalEntitySource($services)->getSourceName();
52
+		if ($propertySource->getSourceName() !== $localEntitySourceName) {
53
+			throw new RuntimeException('Can\'t get a ConstraintStore for a non local entity source.');
54 54
 		}
55 55
 
56 56
 		$dbName = $propertySource->getDatabaseName();
57 57
 		return new ConstraintRepositoryStore(
58
-			$services->getDBLoadBalancerFactory()->getMainLB( $dbName ),
58
+			$services->getDBLoadBalancerFactory()->getMainLB($dbName),
59 59
 			$dbName
60 60
 		);
61 61
 	},
62 62
 
63
-	ConstraintsServices::CONSTRAINT_LOOKUP => static function ( MediaWikiServices $services ) {
64
-		$sourceDefinitions = WikibaseRepo::getEntitySourceDefinitions( $services );
65
-		$propertySource = $sourceDefinitions->getDatabaseSourceForEntityType( Property::ENTITY_TYPE );
66
-		if ( $propertySource === null ) {
67
-			throw new RuntimeException( 'Can\'t get a ConstraintStore for properties not stored in a database.' );
63
+	ConstraintsServices::CONSTRAINT_LOOKUP => static function(MediaWikiServices $services) {
64
+		$sourceDefinitions = WikibaseRepo::getEntitySourceDefinitions($services);
65
+		$propertySource = $sourceDefinitions->getDatabaseSourceForEntityType(Property::ENTITY_TYPE);
66
+		if ($propertySource === null) {
67
+			throw new RuntimeException('Can\'t get a ConstraintStore for properties not stored in a database.');
68 68
 		}
69 69
 
70 70
 		$dbName = $propertySource->getDatabaseName();
71 71
 		$rawLookup = new ConstraintRepositoryLookup(
72
-			$services->getDBLoadBalancerFactory()->getMainLB( $dbName ),
72
+			$services->getDBLoadBalancerFactory()->getMainLB($dbName),
73 73
 			$dbName
74 74
 		);
75
-		return new CachingConstraintLookup( $rawLookup );
75
+		return new CachingConstraintLookup($rawLookup);
76 76
 	},
77 77
 
78
-	ConstraintsServices::CHECK_RESULT_SERIALIZER => static function ( MediaWikiServices $services ) {
78
+	ConstraintsServices::CHECK_RESULT_SERIALIZER => static function(MediaWikiServices $services) {
79 79
 		return new CheckResultSerializer(
80 80
 			new ConstraintSerializer(
81 81
 				false // constraint parameters are not exposed
@@ -86,9 +86,9 @@  discard block
 block discarded – undo
86 86
 		);
87 87
 	},
88 88
 
89
-	ConstraintsServices::CHECK_RESULT_DESERIALIZER => static function ( MediaWikiServices $services ) {
90
-		$entityIdParser = WikibaseRepo::getEntityIdParser( $services );
91
-		$dataValueFactory = WikibaseRepo::getDataValueFactory( $services );
89
+	ConstraintsServices::CHECK_RESULT_DESERIALIZER => static function(MediaWikiServices $services) {
90
+		$entityIdParser = WikibaseRepo::getEntityIdParser($services);
91
+		$dataValueFactory = WikibaseRepo::getDataValueFactory($services);
92 92
 
93 93
 		return new CheckResultDeserializer(
94 94
 			new ConstraintDeserializer(),
@@ -101,13 +101,13 @@  discard block
 block discarded – undo
101 101
 		);
102 102
 	},
103 103
 
104
-	ConstraintsServices::VIOLATION_MESSAGE_SERIALIZER => static function ( MediaWikiServices $services ) {
104
+	ConstraintsServices::VIOLATION_MESSAGE_SERIALIZER => static function(MediaWikiServices $services) {
105 105
 		return new ViolationMessageSerializer();
106 106
 	},
107 107
 
108
-	ConstraintsServices::VIOLATION_MESSAGE_DESERIALIZER => static function ( MediaWikiServices $services ) {
109
-		$entityIdParser = WikibaseRepo::getEntityIdParser( $services );
110
-		$dataValueFactory = WikibaseRepo::getDataValueFactory( $services );
108
+	ConstraintsServices::VIOLATION_MESSAGE_DESERIALIZER => static function(MediaWikiServices $services) {
109
+		$entityIdParser = WikibaseRepo::getEntityIdParser($services);
110
+		$dataValueFactory = WikibaseRepo::getDataValueFactory($services);
111 111
 
112 112
 		return new ViolationMessageDeserializer(
113 113
 			$entityIdParser,
@@ -115,37 +115,37 @@  discard block
 block discarded – undo
115 115
 		);
116 116
 	},
117 117
 
118
-	ConstraintsServices::CONSTRAINT_PARAMETER_PARSER => static function ( MediaWikiServices $services ) {
119
-		$deserializerFactory = WikibaseRepo::getBaseDataModelDeserializerFactory( $services );
120
-		$entitySourceDefinitions = WikibaseRepo::getEntitySourceDefinitions( $services );
118
+	ConstraintsServices::CONSTRAINT_PARAMETER_PARSER => static function(MediaWikiServices $services) {
119
+		$deserializerFactory = WikibaseRepo::getBaseDataModelDeserializerFactory($services);
120
+		$entitySourceDefinitions = WikibaseRepo::getEntitySourceDefinitions($services);
121 121
 
122 122
 		return new ConstraintParameterParser(
123 123
 			$services->getMainConfig(),
124 124
 			$deserializerFactory,
125
-			$entitySourceDefinitions->getDatabaseSourceForEntityType( 'item' )->getConceptBaseUri()
125
+			$entitySourceDefinitions->getDatabaseSourceForEntityType('item')->getConceptBaseUri()
126 126
 		);
127 127
 	},
128 128
 
129
-	ConstraintsServices::CONNECTION_CHECKER_HELPER => static function ( MediaWikiServices $services ) {
129
+	ConstraintsServices::CONNECTION_CHECKER_HELPER => static function(MediaWikiServices $services) {
130 130
 		return new ConnectionCheckerHelper();
131 131
 	},
132 132
 
133
-	ConstraintsServices::RANGE_CHECKER_HELPER => static function ( MediaWikiServices $services ) {
133
+	ConstraintsServices::RANGE_CHECKER_HELPER => static function(MediaWikiServices $services) {
134 134
 		return new RangeCheckerHelper(
135 135
 			$services->getMainConfig(),
136
-			WikibaseRepo::getUnitConverter( $services )
136
+			WikibaseRepo::getUnitConverter($services)
137 137
 		);
138 138
 	},
139 139
 
140
-	ConstraintsServices::SPARQL_HELPER => static function ( MediaWikiServices $services ) {
141
-		$endpoint = $services->getMainConfig()->get( 'WBQualityConstraintsSparqlEndpoint' );
142
-		if ( $endpoint === '' ) {
140
+	ConstraintsServices::SPARQL_HELPER => static function(MediaWikiServices $services) {
141
+		$endpoint = $services->getMainConfig()->get('WBQualityConstraintsSparqlEndpoint');
142
+		if ($endpoint === '') {
143 143
 			return new DummySparqlHelper();
144 144
 		}
145 145
 
146
-		$rdfVocabulary = WikibaseRepo::getRdfVocabulary( $services );
147
-		$entityIdParser = WikibaseRepo::getEntityIdParser( $services );
148
-		$propertyDataTypeLookup = WikibaseRepo::getPropertyDataTypeLookup( $services );
146
+		$rdfVocabulary = WikibaseRepo::getRdfVocabulary($services);
147
+		$entityIdParser = WikibaseRepo::getEntityIdParser($services);
148
+		$propertyDataTypeLookup = WikibaseRepo::getPropertyDataTypeLookup($services);
149 149
 
150 150
 		return new SparqlHelper(
151 151
 			$services->getMainConfig(),
@@ -153,126 +153,126 @@  discard block
 block discarded – undo
153 153
 			$entityIdParser,
154 154
 			$propertyDataTypeLookup,
155 155
 			$services->getMainWANObjectCache(),
156
-			ConstraintsServices::getViolationMessageSerializer( $services ),
157
-			ConstraintsServices::getViolationMessageDeserializer( $services ),
156
+			ConstraintsServices::getViolationMessageSerializer($services),
157
+			ConstraintsServices::getViolationMessageDeserializer($services),
158 158
 			$services->getStatsdDataFactory(),
159
-			ConstraintsServices::getExpiryLock( $services ),
160
-			ConstraintsServices::getLoggingHelper( $services ),
161
-			WikiMap::getCurrentWikiId() . ' WikibaseQualityConstraints ' . $services->getHttpRequestFactory()->getUserAgent(),
159
+			ConstraintsServices::getExpiryLock($services),
160
+			ConstraintsServices::getLoggingHelper($services),
161
+			WikiMap::getCurrentWikiId().' WikibaseQualityConstraints '.$services->getHttpRequestFactory()->getUserAgent(),
162 162
 			$services->getHttpRequestFactory()
163 163
 		);
164 164
 	},
165 165
 
166
-	ConstraintsServices::TYPE_CHECKER_HELPER => static function ( MediaWikiServices $services ) {
166
+	ConstraintsServices::TYPE_CHECKER_HELPER => static function(MediaWikiServices $services) {
167 167
 		return new TypeCheckerHelper(
168
-			WikibaseServices::getEntityLookup( $services ),
168
+			WikibaseServices::getEntityLookup($services),
169 169
 			$services->getMainConfig(),
170
-			ConstraintsServices::getSparqlHelper( $services ),
170
+			ConstraintsServices::getSparqlHelper($services),
171 171
 			$services->getStatsdDataFactory()
172 172
 		);
173 173
 	},
174 174
 
175
-	ConstraintsServices::DELEGATING_CONSTRAINT_CHECKER => static function ( MediaWikiServices $services ) {
176
-		$statementGuidParser = WikibaseRepo::getStatementGuidParser( $services );
175
+	ConstraintsServices::DELEGATING_CONSTRAINT_CHECKER => static function(MediaWikiServices $services) {
176
+		$statementGuidParser = WikibaseRepo::getStatementGuidParser($services);
177 177
 
178 178
 		$config = $services->getMainConfig();
179 179
 		$checkerMap = [
180
-			$config->get( 'WBQualityConstraintsConflictsWithConstraintId' )
181
-				=> ConstraintCheckerServices::getConflictsWithChecker( $services ),
182
-			$config->get( 'WBQualityConstraintsItemRequiresClaimConstraintId' )
183
-				=> ConstraintCheckerServices::getItemChecker( $services ),
184
-			$config->get( 'WBQualityConstraintsValueRequiresClaimConstraintId' )
185
-				=> ConstraintCheckerServices::getTargetRequiredClaimChecker( $services ),
186
-			$config->get( 'WBQualityConstraintsSymmetricConstraintId' )
187
-				=> ConstraintCheckerServices::getSymmetricChecker( $services ),
188
-			$config->get( 'WBQualityConstraintsInverseConstraintId' )
189
-				=> ConstraintCheckerServices::getInverseChecker( $services ),
190
-			$config->get( 'WBQualityConstraintsUsedAsQualifierConstraintId' )
191
-				=> ConstraintCheckerServices::getQualifierChecker( $services ),
192
-			$config->get( 'WBQualityConstraintsAllowedQualifiersConstraintId' )
193
-				=> ConstraintCheckerServices::getQualifiersChecker( $services ),
194
-			$config->get( 'WBQualityConstraintsMandatoryQualifierConstraintId' )
195
-				=> ConstraintCheckerServices::getMandatoryQualifiersChecker( $services ),
196
-			$config->get( 'WBQualityConstraintsRangeConstraintId' )
197
-				=> ConstraintCheckerServices::getRangeChecker( $services ),
198
-			$config->get( 'WBQualityConstraintsDifferenceWithinRangeConstraintId' )
199
-				=> ConstraintCheckerServices::getDiffWithinRangeChecker( $services ),
200
-			$config->get( 'WBQualityConstraintsTypeConstraintId' )
201
-				=> ConstraintCheckerServices::getTypeChecker( $services ),
202
-			$config->get( 'WBQualityConstraintsValueTypeConstraintId' )
203
-				=> ConstraintCheckerServices::getValueTypeChecker( $services ),
204
-			$config->get( 'WBQualityConstraintsSingleValueConstraintId' )
205
-				=> ConstraintCheckerServices::getSingleValueChecker( $services ),
206
-			$config->get( 'WBQualityConstraintsMultiValueConstraintId' )
207
-				=> ConstraintCheckerServices::getMultiValueChecker( $services ),
208
-			$config->get( 'WBQualityConstraintsDistinctValuesConstraintId' )
209
-				=> ConstraintCheckerServices::getUniqueValueChecker( $services ),
210
-			$config->get( 'WBQualityConstraintsFormatConstraintId' )
211
-				=> ConstraintCheckerServices::getFormatChecker( $services ),
212
-			$config->get( 'WBQualityConstraintsCommonsLinkConstraintId' )
213
-				=> ConstraintCheckerServices::getCommonsLinkChecker( $services ),
214
-			$config->get( 'WBQualityConstraintsOneOfConstraintId' )
215
-				=> ConstraintCheckerServices::getOneOfChecker( $services ),
216
-			$config->get( 'WBQualityConstraintsUsedForValuesOnlyConstraintId' )
217
-				=> ConstraintCheckerServices::getValueOnlyChecker( $services ),
218
-			$config->get( 'WBQualityConstraintsUsedAsReferenceConstraintId' )
219
-				=> ConstraintCheckerServices::getReferenceChecker( $services ),
220
-			$config->get( 'WBQualityConstraintsNoBoundsConstraintId' )
221
-				=> ConstraintCheckerServices::getNoBoundsChecker( $services ),
222
-			$config->get( 'WBQualityConstraintsAllowedUnitsConstraintId' )
223
-				=> ConstraintCheckerServices::getAllowedUnitsChecker( $services ),
224
-			$config->get( 'WBQualityConstraintsSingleBestValueConstraintId' )
225
-				=> ConstraintCheckerServices::getSingleBestValueChecker( $services ),
226
-			$config->get( 'WBQualityConstraintsAllowedEntityTypesConstraintId' )
227
-				=> ConstraintCheckerServices::getEntityTypeChecker( $services ),
228
-			$config->get( 'WBQualityConstraintsNoneOfConstraintId' )
229
-				=> ConstraintCheckerServices::getNoneOfChecker( $services ),
230
-			$config->get( 'WBQualityConstraintsIntegerConstraintId' )
231
-				=> ConstraintCheckerServices::getIntegerChecker( $services ),
232
-			$config->get( 'WBQualityConstraintsCitationNeededConstraintId' )
233
-				=> ConstraintCheckerServices::getCitationNeededChecker( $services ),
234
-			$config->get( 'WBQualityConstraintsPropertyScopeConstraintId' )
235
-				=> ConstraintCheckerServices::getPropertyScopeChecker( $services ),
236
-			$config->get( 'WBQualityConstraintsContemporaryConstraintId' )
237
-				=> ConstraintCheckerServices::getContemporaryChecker( $services ),
238
-			$config->get( 'WBQualityConstraintsLexemeLanguageConstraintId' )
239
-				=> ConstraintCheckerServices::getLexemeLanguageChecker( $services ),
240
-			$config->get( 'WBQualityConstraintsLabelInLanguageConstraintId' )
241
-				=> ConstraintCheckerServices::getLabelInLanguageChecker( $services ),
180
+			$config->get('WBQualityConstraintsConflictsWithConstraintId')
181
+				=> ConstraintCheckerServices::getConflictsWithChecker($services),
182
+			$config->get('WBQualityConstraintsItemRequiresClaimConstraintId')
183
+				=> ConstraintCheckerServices::getItemChecker($services),
184
+			$config->get('WBQualityConstraintsValueRequiresClaimConstraintId')
185
+				=> ConstraintCheckerServices::getTargetRequiredClaimChecker($services),
186
+			$config->get('WBQualityConstraintsSymmetricConstraintId')
187
+				=> ConstraintCheckerServices::getSymmetricChecker($services),
188
+			$config->get('WBQualityConstraintsInverseConstraintId')
189
+				=> ConstraintCheckerServices::getInverseChecker($services),
190
+			$config->get('WBQualityConstraintsUsedAsQualifierConstraintId')
191
+				=> ConstraintCheckerServices::getQualifierChecker($services),
192
+			$config->get('WBQualityConstraintsAllowedQualifiersConstraintId')
193
+				=> ConstraintCheckerServices::getQualifiersChecker($services),
194
+			$config->get('WBQualityConstraintsMandatoryQualifierConstraintId')
195
+				=> ConstraintCheckerServices::getMandatoryQualifiersChecker($services),
196
+			$config->get('WBQualityConstraintsRangeConstraintId')
197
+				=> ConstraintCheckerServices::getRangeChecker($services),
198
+			$config->get('WBQualityConstraintsDifferenceWithinRangeConstraintId')
199
+				=> ConstraintCheckerServices::getDiffWithinRangeChecker($services),
200
+			$config->get('WBQualityConstraintsTypeConstraintId')
201
+				=> ConstraintCheckerServices::getTypeChecker($services),
202
+			$config->get('WBQualityConstraintsValueTypeConstraintId')
203
+				=> ConstraintCheckerServices::getValueTypeChecker($services),
204
+			$config->get('WBQualityConstraintsSingleValueConstraintId')
205
+				=> ConstraintCheckerServices::getSingleValueChecker($services),
206
+			$config->get('WBQualityConstraintsMultiValueConstraintId')
207
+				=> ConstraintCheckerServices::getMultiValueChecker($services),
208
+			$config->get('WBQualityConstraintsDistinctValuesConstraintId')
209
+				=> ConstraintCheckerServices::getUniqueValueChecker($services),
210
+			$config->get('WBQualityConstraintsFormatConstraintId')
211
+				=> ConstraintCheckerServices::getFormatChecker($services),
212
+			$config->get('WBQualityConstraintsCommonsLinkConstraintId')
213
+				=> ConstraintCheckerServices::getCommonsLinkChecker($services),
214
+			$config->get('WBQualityConstraintsOneOfConstraintId')
215
+				=> ConstraintCheckerServices::getOneOfChecker($services),
216
+			$config->get('WBQualityConstraintsUsedForValuesOnlyConstraintId')
217
+				=> ConstraintCheckerServices::getValueOnlyChecker($services),
218
+			$config->get('WBQualityConstraintsUsedAsReferenceConstraintId')
219
+				=> ConstraintCheckerServices::getReferenceChecker($services),
220
+			$config->get('WBQualityConstraintsNoBoundsConstraintId')
221
+				=> ConstraintCheckerServices::getNoBoundsChecker($services),
222
+			$config->get('WBQualityConstraintsAllowedUnitsConstraintId')
223
+				=> ConstraintCheckerServices::getAllowedUnitsChecker($services),
224
+			$config->get('WBQualityConstraintsSingleBestValueConstraintId')
225
+				=> ConstraintCheckerServices::getSingleBestValueChecker($services),
226
+			$config->get('WBQualityConstraintsAllowedEntityTypesConstraintId')
227
+				=> ConstraintCheckerServices::getEntityTypeChecker($services),
228
+			$config->get('WBQualityConstraintsNoneOfConstraintId')
229
+				=> ConstraintCheckerServices::getNoneOfChecker($services),
230
+			$config->get('WBQualityConstraintsIntegerConstraintId')
231
+				=> ConstraintCheckerServices::getIntegerChecker($services),
232
+			$config->get('WBQualityConstraintsCitationNeededConstraintId')
233
+				=> ConstraintCheckerServices::getCitationNeededChecker($services),
234
+			$config->get('WBQualityConstraintsPropertyScopeConstraintId')
235
+				=> ConstraintCheckerServices::getPropertyScopeChecker($services),
236
+			$config->get('WBQualityConstraintsContemporaryConstraintId')
237
+				=> ConstraintCheckerServices::getContemporaryChecker($services),
238
+			$config->get('WBQualityConstraintsLexemeLanguageConstraintId')
239
+				=> ConstraintCheckerServices::getLexemeLanguageChecker($services),
240
+			$config->get('WBQualityConstraintsLabelInLanguageConstraintId')
241
+				=> ConstraintCheckerServices::getLabelInLanguageChecker($services),
242 242
 		];
243 243
 
244 244
 		return new DelegatingConstraintChecker(
245
-			WikibaseServices::getEntityLookup( $services ),
245
+			WikibaseServices::getEntityLookup($services),
246 246
 			$checkerMap,
247
-			ConstraintsServices::getConstraintLookup( $services ),
248
-			ConstraintsServices::getConstraintParameterParser( $services ),
247
+			ConstraintsServices::getConstraintLookup($services),
248
+			ConstraintsServices::getConstraintParameterParser($services),
249 249
 			$statementGuidParser,
250
-			ConstraintsServices::getLoggingHelper( $services ),
251
-			$config->get( 'WBQualityConstraintsCheckQualifiers' ),
252
-			$config->get( 'WBQualityConstraintsCheckReferences' ),
253
-			$config->get( 'WBQualityConstraintsPropertiesWithViolatingQualifiers' )
250
+			ConstraintsServices::getLoggingHelper($services),
251
+			$config->get('WBQualityConstraintsCheckQualifiers'),
252
+			$config->get('WBQualityConstraintsCheckReferences'),
253
+			$config->get('WBQualityConstraintsPropertiesWithViolatingQualifiers')
254 254
 		);
255 255
 	},
256 256
 
257
-	ConstraintsServices::RESULTS_SOURCE => static function ( MediaWikiServices $services ) {
257
+	ConstraintsServices::RESULTS_SOURCE => static function(MediaWikiServices $services) {
258 258
 		$config = $services->getMainConfig();
259 259
 		$resultsSource = new CheckingResultsSource(
260
-			ConstraintsServices::getDelegatingConstraintChecker( $services )
260
+			ConstraintsServices::getDelegatingConstraintChecker($services)
261 261
 		);
262 262
 
263 263
 		$cacheCheckConstraintsResults = false;
264 264
 
265
-		if ( $config->get( 'WBQualityConstraintsCacheCheckConstraintsResults' ) ) {
265
+		if ($config->get('WBQualityConstraintsCacheCheckConstraintsResults')) {
266 266
 			$cacheCheckConstraintsResults = true;
267 267
 			// check that we can use getLocalRepoWikiPageMetaDataAccessor()
268 268
 			// TODO we should always be able to cache constraint check results (T244726)
269
-			$entitySources = WikibaseRepo::getEntitySourceDefinitions( $services )->getSources();
270
-			$localEntitySourceName = WikibaseRepo::getLocalEntitySource( $services )->getSourceName();
269
+			$entitySources = WikibaseRepo::getEntitySourceDefinitions($services)->getSources();
270
+			$localEntitySourceName = WikibaseRepo::getLocalEntitySource($services)->getSourceName();
271 271
 
272
-			foreach ( $entitySources as $entitySource ) {
273
-				if ( $entitySource->getSourceName() !== $localEntitySourceName ) {
274
-					LoggerFactory::getInstance( 'WikibaseQualityConstraints' )->warning(
275
-						'Cannot cache constraint check results for non-local source: ' .
272
+			foreach ($entitySources as $entitySource) {
273
+				if ($entitySource->getSourceName() !== $localEntitySourceName) {
274
+					LoggerFactory::getInstance('WikibaseQualityConstraints')->warning(
275
+						'Cannot cache constraint check results for non-local source: '.
276 276
 						$entitySource->getSourceName()
277 277
 					);
278 278
 					$cacheCheckConstraintsResults = false;
@@ -281,28 +281,28 @@  discard block
 block discarded – undo
281 281
 			}
282 282
 		}
283 283
 
284
-		if ( $cacheCheckConstraintsResults ) {
284
+		if ($cacheCheckConstraintsResults) {
285 285
 			$possiblyStaleConstraintTypes = [
286
-				$config->get( 'WBQualityConstraintsCommonsLinkConstraintId' ),
287
-				$config->get( 'WBQualityConstraintsTypeConstraintId' ),
288
-				$config->get( 'WBQualityConstraintsValueTypeConstraintId' ),
289
-				$config->get( 'WBQualityConstraintsDistinctValuesConstraintId' ),
286
+				$config->get('WBQualityConstraintsCommonsLinkConstraintId'),
287
+				$config->get('WBQualityConstraintsTypeConstraintId'),
288
+				$config->get('WBQualityConstraintsValueTypeConstraintId'),
289
+				$config->get('WBQualityConstraintsDistinctValuesConstraintId'),
290 290
 			];
291
-			$entityIdParser = WikibaseRepo::getEntityIdParser( $services );
291
+			$entityIdParser = WikibaseRepo::getEntityIdParser($services);
292 292
 			$wikiPageEntityMetaDataAccessor = WikibaseRepo::getLocalRepoWikiPageMetaDataAccessor(
293 293
 				$services );
294 294
 
295 295
 			$resultsSource = new CachingResultsSource(
296 296
 				$resultsSource,
297 297
 				ResultsCache::getDefaultInstance(),
298
-				ConstraintsServices::getCheckResultSerializer( $services ),
299
-				ConstraintsServices::getCheckResultDeserializer( $services ),
298
+				ConstraintsServices::getCheckResultSerializer($services),
299
+				ConstraintsServices::getCheckResultDeserializer($services),
300 300
 				$wikiPageEntityMetaDataAccessor,
301 301
 				$entityIdParser,
302
-				$config->get( 'WBQualityConstraintsCacheCheckConstraintsTTLSeconds' ),
302
+				$config->get('WBQualityConstraintsCacheCheckConstraintsTTLSeconds'),
303 303
 				$possiblyStaleConstraintTypes,
304
-				$config->get( 'WBQualityConstraintsCacheCheckConstraintsMaximumRevisionIds' ),
305
-				ConstraintsServices::getLoggingHelper( $services )
304
+				$config->get('WBQualityConstraintsCacheCheckConstraintsMaximumRevisionIds'),
305
+				ConstraintsServices::getLoggingHelper($services)
306 306
 			);
307 307
 		}
308 308
 
Please login to merge, or discard this patch.
src/ConstraintRepositoryLookup.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	 * then using the main DBLoadBalancer service may be incorrect.
26 26
 	 * @param string|false $dbName Database name ($domain for ILoadBalancer methods).
27 27
 	 */
28
-	public function __construct( ILoadBalancer $lb, $dbName ) {
28
+	public function __construct(ILoadBalancer $lb, $dbName) {
29 29
 		$this->lb = $lb;
30 30
 		$this->dbName = $dbName;
31 31
 	}
@@ -35,22 +35,22 @@  discard block
 block discarded – undo
35 35
 	 *
36 36
 	 * @return Constraint[]
37 37
 	 */
38
-	public function queryConstraintsForProperty( NumericPropertyId $propertyId ) {
39
-		$dbr = $this->lb->getConnection( ILoadBalancer::DB_REPLICA, [], $this->dbName );
38
+	public function queryConstraintsForProperty(NumericPropertyId $propertyId) {
39
+		$dbr = $this->lb->getConnection(ILoadBalancer::DB_REPLICA, [], $this->dbName);
40 40
 
41 41
 		$results = $dbr->newSelectQueryBuilder()
42
-			->select( [
42
+			->select([
43 43
 				'constraint_type_qid',
44 44
 				'constraint_parameters',
45 45
 				'constraint_guid',
46 46
 				'pid',
47
-			] )
48
-			->from( 'wbqc_constraints' )
49
-			->where( [ 'pid' => $propertyId->getNumericId() ] )
50
-			->caller( __METHOD__ )
47
+			])
48
+			->from('wbqc_constraints')
49
+			->where(['pid' => $propertyId->getNumericId()])
50
+			->caller(__METHOD__)
51 51
 			->fetchResultSet();
52 52
 
53
-		return $this->convertToConstraints( $results );
53
+		return $this->convertToConstraints($results);
54 54
 	}
55 55
 
56 56
 	/**
@@ -58,26 +58,26 @@  discard block
 block discarded – undo
58 58
 	 *
59 59
 	 * @return Constraint[]
60 60
 	 */
61
-	private function convertToConstraints( IResultWrapper $results ) {
61
+	private function convertToConstraints(IResultWrapper $results) {
62 62
 		$constraints = [];
63
-		$logger = LoggerFactory::getInstance( 'WikibaseQualityConstraints' );
64
-		foreach ( $results as $result ) {
63
+		$logger = LoggerFactory::getInstance('WikibaseQualityConstraints');
64
+		foreach ($results as $result) {
65 65
 			$constraintTypeItemId = $result->constraint_type_qid;
66
-			$constraintParameters = json_decode( $result->constraint_parameters, true );
66
+			$constraintParameters = json_decode($result->constraint_parameters, true);
67 67
 
68
-			if ( $constraintParameters === null ) {
68
+			if ($constraintParameters === null) {
69 69
 				// T171295
70
-				$logger->warning( 'Constraint {constraintId} has invalid constraint parameters.', [
70
+				$logger->warning('Constraint {constraintId} has invalid constraint parameters.', [
71 71
 					'method' => __METHOD__,
72 72
 					'constraintId' => $result->constraint_guid,
73 73
 					'constraintParameters' => $result->constraint_parameters,
74
-				] );
75
-				$constraintParameters = [ '@error' => [ /* unknown */ ] ];
74
+				]);
75
+				$constraintParameters = ['@error' => [/* unknown */]];
76 76
 			}
77 77
 
78 78
 			$constraints[] = new Constraint(
79 79
 				$result->constraint_guid,
80
-				NumericPropertyId::newFromNumber( $result->pid ),
80
+				NumericPropertyId::newFromNumber($result->pid),
81 81
 				$constraintTypeItemId,
82 82
 				$constraintParameters
83 83
 			);
Please login to merge, or discard this patch.
src/Specials/SpecialConstraintReport.php 1 patch
Spacing   +92 added lines, -92 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 		Config $config,
127 127
 		IBufferingStatsdDataFactory $dataFactory
128 128
 	) {
129
-		parent::__construct( 'ConstraintReport' );
129
+		parent::__construct('ConstraintReport');
130 130
 
131 131
 		$this->entityLookup = $entityLookup;
132 132
 		$this->entityTitleLookup = $entityTitleLookup;
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 		$language = $this->getLanguage();
136 136
 
137 137
 		$formatterOptions = new FormatterOptions();
138
-		$formatterOptions->setOption( SnakFormatter::OPT_LANG, $language->getCode() );
138
+		$formatterOptions->setOption(SnakFormatter::OPT_LANG, $language->getCode());
139 139
 		$dataValueFormatter = $valueFormatterFactory->getValueFormatter(
140 140
 			SnakFormatter::FORMAT_HTML,
141 141
 			$formatterOptions
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 	 * @return string
196 196
 	 */
197 197
 	public function getDescription() {
198
-		return $this->msg( 'wbqc-constraintreport' )->text();
198
+		return $this->msg('wbqc-constraintreport')->text();
199 199
 	}
200 200
 
201 201
 	/**
@@ -207,43 +207,43 @@  discard block
 block discarded – undo
207 207
 	 * @throws EntityIdParsingException
208 208
 	 * @throws UnexpectedValueException
209 209
 	 */
210
-	public function execute( $subPage ) {
210
+	public function execute($subPage) {
211 211
 		$out = $this->getOutput();
212 212
 
213
-		$postRequest = $this->getContext()->getRequest()->getVal( 'entityid' );
214
-		if ( $postRequest ) {
215
-			$out->redirect( $this->getPageTitle( strtoupper( $postRequest ) )->getLocalURL() );
213
+		$postRequest = $this->getContext()->getRequest()->getVal('entityid');
214
+		if ($postRequest) {
215
+			$out->redirect($this->getPageTitle(strtoupper($postRequest))->getLocalURL());
216 216
 			return;
217 217
 		}
218 218
 
219 219
 		$out->enableOOUI();
220
-		$out->addModules( $this->getModules() );
220
+		$out->addModules($this->getModules());
221 221
 
222 222
 		$this->setHeaders();
223 223
 
224
-		$out->addHTML( $this->getExplanationText() );
224
+		$out->addHTML($this->getExplanationText());
225 225
 		$this->buildEntityIdForm();
226 226
 
227
-		if ( !$subPage ) {
227
+		if (!$subPage) {
228 228
 			return;
229 229
 		}
230 230
 
231
-		if ( !is_string( $subPage ) ) {
232
-			throw new InvalidArgumentException( '$subPage must be string.' );
231
+		if (!is_string($subPage)) {
232
+			throw new InvalidArgumentException('$subPage must be string.');
233 233
 		}
234 234
 
235 235
 		try {
236
-			$entityId = $this->entityIdParser->parse( $subPage );
237
-		} catch ( EntityIdParsingException $e ) {
236
+			$entityId = $this->entityIdParser->parse($subPage);
237
+		} catch (EntityIdParsingException $e) {
238 238
 			$out->addHTML(
239
-				$this->buildNotice( 'wbqc-constraintreport-invalid-entity-id', true )
239
+				$this->buildNotice('wbqc-constraintreport-invalid-entity-id', true)
240 240
 			);
241 241
 			return;
242 242
 		}
243 243
 
244
-		if ( !$this->entityLookup->hasEntity( $entityId ) ) {
244
+		if (!$this->entityLookup->hasEntity($entityId)) {
245 245
 			$out->addHTML(
246
-				$this->buildNotice( 'wbqc-constraintreport-not-existent-entity', true )
246
+				$this->buildNotice('wbqc-constraintreport-not-existent-entity', true)
247 247
 			);
248 248
 			return;
249 249
 		}
@@ -251,18 +251,18 @@  discard block
 block discarded – undo
251 251
 		$this->dataFactory->increment(
252 252
 			'wikibase.quality.constraints.specials.specialConstraintReport.executeCheck'
253 253
 		);
254
-		$results = $this->constraintChecker->checkAgainstConstraintsOnEntityId( $entityId );
254
+		$results = $this->constraintChecker->checkAgainstConstraintsOnEntityId($entityId);
255 255
 
256
-		if ( $results !== [] ) {
256
+		if ($results !== []) {
257 257
 			$out->addHTML(
258
-				$this->buildResultHeader( $entityId )
259
-				. $this->buildSummary( $results )
260
-				. $this->buildResultTable( $entityId, $results )
258
+				$this->buildResultHeader($entityId)
259
+				. $this->buildSummary($results)
260
+				. $this->buildResultTable($entityId, $results)
261 261
 			);
262 262
 		} else {
263 263
 			$out->addHTML(
264
-				$this->buildResultHeader( $entityId )
265
-				. $this->buildNotice( 'wbqc-constraintreport-empty-result' )
264
+				$this->buildResultHeader($entityId)
265
+				. $this->buildNotice('wbqc-constraintreport-empty-result')
266 266
 			);
267 267
 		}
268 268
 	}
@@ -278,15 +278,15 @@  discard block
 block discarded – undo
278 278
 				'name' => 'entityid',
279 279
 				'label-message' => 'wbqc-constraintreport-form-entityid-label',
280 280
 				'cssclass' => 'wbqc-constraintreport-form-entity-id',
281
-				'placeholder' => $this->msg( 'wbqc-constraintreport-form-entityid-placeholder' )->escaped()
281
+				'placeholder' => $this->msg('wbqc-constraintreport-form-entityid-placeholder')->escaped()
282 282
 			]
283 283
 		];
284
-		$htmlForm = HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext(), 'wbqc-constraintreport-form' );
285
-		$htmlForm->setSubmitText( $this->msg( 'wbqc-constraintreport-form-submit-label' )->escaped() );
286
-		$htmlForm->setSubmitCallback( static function () {
284
+		$htmlForm = HTMLForm::factory('ooui', $formDescriptor, $this->getContext(), 'wbqc-constraintreport-form');
285
+		$htmlForm->setSubmitText($this->msg('wbqc-constraintreport-form-submit-label')->escaped());
286
+		$htmlForm->setSubmitCallback(static function() {
287 287
 			return false;
288 288
 		} );
289
-		$htmlForm->setMethod( 'post' );
289
+		$htmlForm->setMethod('post');
290 290
 		$htmlForm->show();
291 291
 	}
292 292
 
@@ -300,16 +300,16 @@  discard block
 block discarded – undo
300 300
 	 *
301 301
 	 * @return string HTML
302 302
 	 */
303
-	private function buildNotice( $messageKey, $error = false ) {
304
-		if ( !is_string( $messageKey ) ) {
305
-			throw new InvalidArgumentException( '$message must be string.' );
303
+	private function buildNotice($messageKey, $error = false) {
304
+		if (!is_string($messageKey)) {
305
+			throw new InvalidArgumentException('$message must be string.');
306 306
 		}
307
-		if ( !is_bool( $error ) ) {
308
-			throw new InvalidArgumentException( '$error must be bool.' );
307
+		if (!is_bool($error)) {
308
+			throw new InvalidArgumentException('$error must be bool.');
309 309
 		}
310 310
 
311 311
 		$cssClasses = 'wbqc-constraintreport-notice';
312
-		if ( $error ) {
312
+		if ($error) {
313 313
 			$cssClasses .= ' wbqc-constraintreport-notice-error';
314 314
 		}
315 315
 
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 				[
319 319
 					'class' => $cssClasses
320 320
 				],
321
-				$this->msg( $messageKey )->escaped()
321
+				$this->msg($messageKey)->escaped()
322 322
 			);
323 323
 	}
324 324
 
@@ -328,16 +328,16 @@  discard block
 block discarded – undo
328 328
 	private function getExplanationText() {
329 329
 		return Html::rawElement(
330 330
 			'div',
331
-			[ 'class' => 'wbqc-explanation' ],
331
+			['class' => 'wbqc-explanation'],
332 332
 			Html::rawElement(
333 333
 				'p',
334 334
 				[],
335
-				$this->msg( 'wbqc-constraintreport-explanation-part-one' )->escaped()
335
+				$this->msg('wbqc-constraintreport-explanation-part-one')->escaped()
336 336
 			)
337 337
 			. Html::rawElement(
338 338
 				'p',
339 339
 				[],
340
-				$this->msg( 'wbqc-constraintreport-explanation-part-two' )->escaped()
340
+				$this->msg('wbqc-constraintreport-explanation-part-two')->escaped()
341 341
 			)
342 342
 		);
343 343
 	}
@@ -349,72 +349,72 @@  discard block
 block discarded – undo
349 349
 	 * @return string HTML
350 350
 	 * @suppress SecurityCheck-DoubleEscaped
351 351
 	 */
352
-	private function buildResultTable( EntityId $entityId, array $results ) {
352
+	private function buildResultTable(EntityId $entityId, array $results) {
353 353
 		// Set table headers
354 354
 		$table = new HtmlTableBuilder(
355 355
 			[
356 356
 				new HtmlTableHeaderBuilder(
357
-					$this->msg( 'wbqc-constraintreport-result-table-header-status' )->escaped(),
357
+					$this->msg('wbqc-constraintreport-result-table-header-status')->escaped(),
358 358
 					true
359 359
 				),
360 360
 				new HtmlTableHeaderBuilder(
361
-					$this->msg( 'wbqc-constraintreport-result-table-header-property' )->escaped(),
361
+					$this->msg('wbqc-constraintreport-result-table-header-property')->escaped(),
362 362
 					true
363 363
 				),
364 364
 				new HtmlTableHeaderBuilder(
365
-					$this->msg( 'wbqc-constraintreport-result-table-header-message' )->escaped(),
365
+					$this->msg('wbqc-constraintreport-result-table-header-message')->escaped(),
366 366
 					true
367 367
 				),
368 368
 				new HtmlTableHeaderBuilder(
369
-					$this->msg( 'wbqc-constraintreport-result-table-header-constraint' )->escaped(),
369
+					$this->msg('wbqc-constraintreport-result-table-header-constraint')->escaped(),
370 370
 					true
371 371
 				)
372 372
 			]
373 373
 		);
374 374
 
375
-		foreach ( $results as $result ) {
376
-			$table = $this->appendToResultTable( $table, $entityId, $result );
375
+		foreach ($results as $result) {
376
+			$table = $this->appendToResultTable($table, $entityId, $result);
377 377
 		}
378 378
 
379 379
 		return $table->toHtml();
380 380
 	}
381 381
 
382
-	private function appendToResultTable( HtmlTableBuilder $table, EntityId $entityId, CheckResult $result ) {
382
+	private function appendToResultTable(HtmlTableBuilder $table, EntityId $entityId, CheckResult $result) {
383 383
 		$message = $result->getMessage();
384
-		if ( $message === null ) {
384
+		if ($message === null) {
385 385
 			// no row for this result
386 386
 			return $table;
387 387
 		}
388 388
 
389 389
 		// Status column
390
-		$statusColumn = $this->formatStatus( $result->getStatus() );
390
+		$statusColumn = $this->formatStatus($result->getStatus());
391 391
 
392 392
 		// Property column
393
-		$propertyId = new NumericPropertyId( $result->getContextCursor()->getSnakPropertyId() );
393
+		$propertyId = new NumericPropertyId($result->getContextCursor()->getSnakPropertyId());
394 394
 		$propertyColumn = $this->getClaimLink(
395 395
 			$entityId,
396 396
 			$propertyId,
397
-			$this->entityIdLabelFormatter->formatEntityId( $propertyId )
397
+			$this->entityIdLabelFormatter->formatEntityId($propertyId)
398 398
 		);
399 399
 
400 400
 		// Message column
401
-		$messageColumn = $this->violationMessageRenderer->render( $message );
401
+		$messageColumn = $this->violationMessageRenderer->render($message);
402 402
 
403 403
 		// Constraint column
404 404
 		$constraintTypeItemId = $result->getConstraint()->getConstraintTypeItemId();
405 405
 		try {
406
-			$constraintTypeLabel = $this->entityIdLabelFormatter->formatEntityId( new ItemId( $constraintTypeItemId ) );
407
-		} catch ( InvalidArgumentException $e ) {
408
-			$constraintTypeLabel = htmlspecialchars( $constraintTypeItemId );
406
+			$constraintTypeLabel = $this->entityIdLabelFormatter->formatEntityId(new ItemId($constraintTypeItemId));
407
+		} catch (InvalidArgumentException $e) {
408
+			$constraintTypeLabel = htmlspecialchars($constraintTypeItemId);
409 409
 		}
410 410
 		$constraintLink = $this->getClaimLink(
411 411
 			$propertyId,
412
-			new NumericPropertyId( $this->config->get( 'WBQualityConstraintsPropertyConstraintId' ) ),
412
+			new NumericPropertyId($this->config->get('WBQualityConstraintsPropertyConstraintId')),
413 413
 			$constraintTypeLabel
414 414
 		);
415 415
 		$constraintColumn = $this->buildExpandableElement(
416 416
 			$constraintLink,
417
-			$this->constraintParameterRenderer->formatParameters( $result->getParameters() ),
417
+			$this->constraintParameterRenderer->formatParameters($result->getParameters()),
418 418
 			'[...]'
419 419
 		);
420 420
 
@@ -454,15 +454,15 @@  discard block
 block discarded – undo
454 454
 	 *
455 455
 	 * @return string HTML
456 456
 	 */
457
-	protected function buildResultHeader( EntityId $entityId ) {
458
-		$entityLink = sprintf( '%s (%s)',
459
-							   $this->entityIdLinkFormatter->formatEntityId( $entityId ),
460
-							   htmlspecialchars( $entityId->getSerialization() ) );
457
+	protected function buildResultHeader(EntityId $entityId) {
458
+		$entityLink = sprintf('%s (%s)',
459
+							   $this->entityIdLinkFormatter->formatEntityId($entityId),
460
+							   htmlspecialchars($entityId->getSerialization()));
461 461
 
462 462
 		return Html::rawElement(
463 463
 			'h3',
464 464
 			[],
465
-			sprintf( '%s %s', $this->msg( 'wbqc-constraintreport-result-headline' )->escaped(), $entityLink )
465
+			sprintf('%s %s', $this->msg('wbqc-constraintreport-result-headline')->escaped(), $entityLink)
466 466
 		);
467 467
 	}
468 468
 
@@ -473,24 +473,24 @@  discard block
 block discarded – undo
473 473
 	 *
474 474
 	 * @return string HTML
475 475
 	 */
476
-	protected function buildSummary( array $results ) {
476
+	protected function buildSummary(array $results) {
477 477
 		$statuses = [];
478
-		foreach ( $results as $result ) {
479
-			$status = strtolower( $result->getStatus() );
480
-			$statuses[$status] = isset( $statuses[$status] ) ? $statuses[$status] + 1 : 1;
478
+		foreach ($results as $result) {
479
+			$status = strtolower($result->getStatus());
480
+			$statuses[$status] = isset($statuses[$status]) ? $statuses[$status] + 1 : 1;
481 481
 		}
482 482
 
483 483
 		$statusElements = [];
484
-		foreach ( $statuses as $status => $count ) {
485
-			if ( $count > 0 ) {
484
+		foreach ($statuses as $status => $count) {
485
+			if ($count > 0) {
486 486
 				$statusElements[] =
487
-					$this->formatStatus( $status )
487
+					$this->formatStatus($status)
488 488
 					. ': '
489 489
 					. $count;
490 490
 			}
491 491
 		}
492 492
 
493
-		return Html::rawElement( 'p', [], implode( ', ', $statusElements ) );
493
+		return Html::rawElement('p', [], implode(', ', $statusElements));
494 494
 	}
495 495
 
496 496
 	/**
@@ -505,15 +505,15 @@  discard block
 block discarded – undo
505 505
 	 *
506 506
 	 * @return string HTML
507 507
 	 */
508
-	protected function buildExpandableElement( $content, $expandableContent, $indicator ) {
509
-		if ( !is_string( $content ) ) {
510
-			throw new InvalidArgumentException( '$content has to be string.' );
508
+	protected function buildExpandableElement($content, $expandableContent, $indicator) {
509
+		if (!is_string($content)) {
510
+			throw new InvalidArgumentException('$content has to be string.');
511 511
 		}
512
-		if ( $expandableContent && ( !is_string( $expandableContent ) ) ) {
513
-			throw new InvalidArgumentException( '$tooltipContent, if provided, has to be string.' );
512
+		if ($expandableContent && (!is_string($expandableContent))) {
513
+			throw new InvalidArgumentException('$tooltipContent, if provided, has to be string.');
514 514
 		}
515 515
 
516
-		if ( empty( $expandableContent ) ) {
516
+		if (empty($expandableContent)) {
517 517
 			return $content;
518 518
 		}
519 519
 
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
 			$expandableContent
534 534
 		);
535 535
 
536
-		return sprintf( '%s %s %s', $content, $tooltipIndicator, $wrappedExpandableContent );
536
+		return sprintf('%s %s %s', $content, $tooltipIndicator, $wrappedExpandableContent);
537 537
 	}
538 538
 
539 539
 	/**
@@ -545,8 +545,8 @@  discard block
 block discarded – undo
545 545
 	 *
546 546
 	 * @return string HTML
547 547
 	 */
548
-	private function formatStatus( $status ) {
549
-		$messageName = "wbqc-constraintreport-status-" . strtolower( $status );
548
+	private function formatStatus($status) {
549
+		$messageName = "wbqc-constraintreport-status-".strtolower($status);
550 550
 		$statusIcons = [
551 551
 			CheckResult::STATUS_SUGGESTION => [
552 552
 				'icon' => 'suggestion-constraint-violation',
@@ -563,25 +563,25 @@  discard block
 block discarded – undo
563 563
 			],
564 564
 		];
565 565
 
566
-		if ( array_key_exists( $status, $statusIcons ) ) {
567
-			$iconWidget = new IconWidget( $statusIcons[$status] );
568
-			$iconHtml = $iconWidget->toString() . ' ';
566
+		if (array_key_exists($status, $statusIcons)) {
567
+			$iconWidget = new IconWidget($statusIcons[$status]);
568
+			$iconHtml = $iconWidget->toString().' ';
569 569
 		} else {
570 570
 			$iconHtml = '';
571 571
 		}
572 572
 
573
-		$labelWidget = new LabelWidget( [
574
-			'label' => $this->msg( $messageName )->text(),
575
-		] );
573
+		$labelWidget = new LabelWidget([
574
+			'label' => $this->msg($messageName)->text(),
575
+		]);
576 576
 		$labelHtml = $labelWidget->toString();
577 577
 
578 578
 		$formattedStatus =
579 579
 			Html::rawElement(
580 580
 				'span',
581 581
 				[
582
-					'class' => 'wbqc-status wbqc-status-' . $status
582
+					'class' => 'wbqc-status wbqc-status-'.$status
583 583
 				],
584
-				$iconHtml . $labelHtml
584
+				$iconHtml.$labelHtml
585 585
 			);
586 586
 
587 587
 		return $formattedStatus;
@@ -596,11 +596,11 @@  discard block
 block discarded – undo
596 596
 	 *
597 597
 	 * @return string HTML
598 598
 	 */
599
-	private function getClaimLink( EntityId $entityId, NumericPropertyId $propertyId, $text ) {
599
+	private function getClaimLink(EntityId $entityId, NumericPropertyId $propertyId, $text) {
600 600
 		return Html::rawElement(
601 601
 			'a',
602 602
 			[
603
-				'href' => $this->getClaimUrl( $entityId, $propertyId ),
603
+				'href' => $this->getClaimUrl($entityId, $propertyId),
604 604
 				'target' => '_blank'
605 605
 			],
606 606
 			$text
@@ -615,9 +615,9 @@  discard block
 block discarded – undo
615 615
 	 *
616 616
 	 * @return string
617 617
 	 */
618
-	private function getClaimUrl( EntityId $entityId, NumericPropertyId $propertyId ) {
619
-		$title = $this->entityTitleLookup->getTitleForId( $entityId );
620
-		$entityUrl = sprintf( '%s#%s', $title->getLocalURL(), $propertyId->getSerialization() );
618
+	private function getClaimUrl(EntityId $entityId, NumericPropertyId $propertyId) {
619
+		$title = $this->entityTitleLookup->getTitleForId($entityId);
620
+		$entityUrl = sprintf('%s#%s', $title->getLocalURL(), $propertyId->getSerialization());
621 621
 
622 622
 		return $entityUrl;
623 623
 	}
Please login to merge, or discard this patch.
src/ConstraintCheck/Context/ReferenceContext.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare( strict_types = 1 );
3
+declare(strict_types=1);
4 4
 
5 5
 namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Context;
6 6
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 		Reference $reference,
33 33
 		Snak $snak
34 34
 	) {
35
-		parent::__construct( $entity, $snak );
35
+		parent::__construct($entity, $snak);
36 36
 		$this->statement = $statement;
37 37
 		$this->reference = $reference;
38 38
 	}
@@ -41,16 +41,16 @@  discard block
 block discarded – undo
41 41
 		return self::TYPE_REFERENCE;
42 42
 	}
43 43
 
44
-	public function getSnakGroup( string $groupingMode, array $separators = [] ): array {
44
+	public function getSnakGroup(string $groupingMode, array $separators = []): array {
45 45
 		$snaks = $this->reference->getSnaks();
46
-		return array_values( $snaks->getArrayCopy() );
46
+		return array_values($snaks->getArrayCopy());
47 47
 	}
48 48
 
49 49
 	public function getCursor(): ContextCursor {
50 50
 		return new ReferenceContextCursor(
51 51
 			$this->entity->getId()->getSerialization(),
52 52
 			$this->statement->getPropertyId()->getSerialization(),
53
-			$this->getStatementGuid( $this->statement ),
53
+			$this->getStatementGuid($this->statement),
54 54
 			$this->snak->getHash(),
55 55
 			$this->snak->getPropertyId()->getSerialization(),
56 56
 			$this->reference->getHash()
Please login to merge, or discard this patch.
src/ConstraintCheck/Context/Context.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare( strict_types = 1 );
3
+declare(strict_types=1);
4 4
 
5 5
 namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Context;
6 6
 
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 	 * @return Snak[] not a SnakList because for a statement context,
120 120
 	 * the returned value might contain the same snak several times.
121 121
 	 */
122
-	public function getSnakGroup( string $groupingMode, array $separators = [] ): array;
122
+	public function getSnakGroup(string $groupingMode, array $separators = []): array;
123 123
 
124 124
 	/**
125 125
 	 * Get the cursor that can be used to address check results for this context.
Please login to merge, or discard this patch.
src/ConstraintCheck/Context/QualifierContext.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare( strict_types = 1 );
3
+declare(strict_types=1);
4 4
 
5 5
 namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Context;
6 6
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 		Statement $statement,
26 26
 		Snak $snak
27 27
 	) {
28
-		parent::__construct( $entity, $snak );
28
+		parent::__construct($entity, $snak);
29 29
 		$this->statement = $statement;
30 30
 	}
31 31
 
@@ -33,16 +33,16 @@  discard block
 block discarded – undo
33 33
 		return self::TYPE_QUALIFIER;
34 34
 	}
35 35
 
36
-	public function getSnakGroup( string $groupingMode, array $separators = [] ): array {
36
+	public function getSnakGroup(string $groupingMode, array $separators = []): array {
37 37
 		$snaks = $this->statement->getQualifiers();
38
-		return array_values( $snaks->getArrayCopy() );
38
+		return array_values($snaks->getArrayCopy());
39 39
 	}
40 40
 
41 41
 	public function getCursor(): ContextCursor {
42 42
 		return new QualifierContextCursor(
43 43
 			$this->entity->getId()->getSerialization(),
44 44
 			$this->statement->getPropertyId()->getSerialization(),
45
-			$this->getStatementGuid( $this->statement ),
45
+			$this->getStatementGuid($this->statement),
46 46
 			$this->snak->getHash(),
47 47
 			$this->snak->getPropertyId()->getSerialization()
48 48
 		);
Please login to merge, or discard this patch.
src/ConstraintCheck/Checker/UniqueValueChecker.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -76,20 +76,20 @@  discard block
 block discarded – undo
76 76
 	 * @throws SparqlHelperException if the checker uses SPARQL and the query times out or some other error occurs
77 77
 	 * @return CheckResult
78 78
 	 */
79
-	public function checkConstraint( Context $context, Constraint $constraint ) {
80
-		if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) {
81
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED );
79
+	public function checkConstraint(Context $context, Constraint $constraint) {
80
+		if ($context->getSnakRank() === Statement::RANK_DEPRECATED) {
81
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED);
82 82
 		}
83 83
 		$parameters = [];
84 84
 
85
-		if ( !( $this->sparqlHelper instanceof DummySparqlHelper ) ) {
85
+		if (!($this->sparqlHelper instanceof DummySparqlHelper)) {
86 86
 
87 87
 			$separators = $this->constraintParameterParser->parseSeparatorsParameter(
88 88
 				$constraint->getConstraintParameters()
89 89
 			);
90 90
 			$parameters['separator'] = $separators;
91 91
 
92
-			if ( $context->getType() === 'statement' ) {
92
+			if ($context->getType() === 'statement') {
93 93
 				$statement = $context->getSnakStatement();
94 94
 				'@phan-var Statement $statement';
95 95
 				$result = $this->sparqlHelper->findEntitiesWithSameStatement(
@@ -98,9 +98,9 @@  discard block
 block discarded – undo
98 98
 				);
99 99
 			} else {
100 100
 				$snak = $context->getSnak();
101
-				if ( !$snak instanceof PropertyValueSnak ) {
101
+				if (!$snak instanceof PropertyValueSnak) {
102 102
 					// nothing to check
103
-					return new CheckResult( $context, $constraint, [], CheckResult::STATUS_COMPLIANCE );
103
+					return new CheckResult($context, $constraint, [], CheckResult::STATUS_COMPLIANCE);
104 104
 				}
105 105
 				$result = $this->sparqlHelper->findEntitiesWithSameQualifierOrReference(
106 106
 					$context->getEntity()->getId(),
@@ -113,32 +113,32 @@  discard block
 block discarded – undo
113 113
 			$otherEntities = $result->getArray();
114 114
 			$metadata = $result->getMetadata();
115 115
 
116
-			if ( $otherEntities === [] ) {
116
+			if ($otherEntities === []) {
117 117
 				$status = CheckResult::STATUS_COMPLIANCE;
118 118
 				$message = null;
119 119
 			} else {
120
-				$otherEntities = array_values( array_filter( $otherEntities ) ); // remove nulls
120
+				$otherEntities = array_values(array_filter($otherEntities)); // remove nulls
121 121
 				$status = CheckResult::STATUS_VIOLATION;
122
-				$message = ( new ViolationMessage( 'wbqc-violation-message-unique-value' ) )
123
-					->withEntityIdList( $otherEntities, Role::SUBJECT );
122
+				$message = (new ViolationMessage('wbqc-violation-message-unique-value'))
123
+					->withEntityIdList($otherEntities, Role::SUBJECT);
124 124
 			}
125 125
 		} else {
126 126
 			$status = CheckResult::STATUS_TODO;
127
-			$message = ( new ViolationMessage( 'wbqc-violation-message-not-yet-implemented' ) )
128
-				->withEntityId( new ItemId( $constraint->getConstraintTypeItemId() ), Role::CONSTRAINT_TYPE_ITEM );
127
+			$message = (new ViolationMessage('wbqc-violation-message-not-yet-implemented'))
128
+				->withEntityId(new ItemId($constraint->getConstraintTypeItemId()), Role::CONSTRAINT_TYPE_ITEM);
129 129
 			$metadata = Metadata::blank();
130 130
 		}
131 131
 
132
-		return ( new CheckResult( $context, $constraint, $parameters, $status, $message ) )
133
-			->withMetadata( $metadata );
132
+		return (new CheckResult($context, $constraint, $parameters, $status, $message))
133
+			->withMetadata($metadata);
134 134
 	}
135 135
 
136
-	public function checkConstraintParameters( Constraint $constraint ) {
136
+	public function checkConstraintParameters(Constraint $constraint) {
137 137
 		$constraintParameters = $constraint->getConstraintParameters();
138 138
 		$exceptions = [];
139 139
 		try {
140
-			$this->constraintParameterParser->parseSeparatorsParameter( $constraintParameters );
141
-		} catch ( ConstraintParameterException $e ) {
140
+			$this->constraintParameterParser->parseSeparatorsParameter($constraintParameters);
141
+		} catch (ConstraintParameterException $e) {
142 142
 			$exceptions[] = $e;
143 143
 		}
144 144
 		return $exceptions;
Please login to merge, or discard this patch.
src/ConstraintCheck/Helper/SparqlHelper.php 1 patch
Spacing   +176 added lines, -179 removed lines patch added patch discarded remove patch
@@ -200,73 +200,73 @@  discard block
 block discarded – undo
200 200
 		$this->defaultUserAgent = $defaultUserAgent;
201 201
 		$this->requestFactory = $requestFactory;
202 202
 		$this->entityPrefixes = [];
203
-		foreach ( $rdfVocabulary->entityNamespaceNames as $namespaceName ) {
204
-			$this->entityPrefixes[] = $rdfVocabulary->getNamespaceURI( $namespaceName );
203
+		foreach ($rdfVocabulary->entityNamespaceNames as $namespaceName) {
204
+			$this->entityPrefixes[] = $rdfVocabulary->getNamespaceURI($namespaceName);
205 205
 		}
206 206
 
207
-		$this->endpoint = $config->get( 'WBQualityConstraintsSparqlEndpoint' );
208
-		$this->maxQueryTimeMillis = $config->get( 'WBQualityConstraintsSparqlMaxMillis' );
209
-		$this->instanceOfId = $config->get( 'WBQualityConstraintsInstanceOfId' );
210
-		$this->subclassOfId = $config->get( 'WBQualityConstraintsSubclassOfId' );
211
-		$this->cacheMapSize = $config->get( 'WBQualityConstraintsFormatCacheMapSize' );
207
+		$this->endpoint = $config->get('WBQualityConstraintsSparqlEndpoint');
208
+		$this->maxQueryTimeMillis = $config->get('WBQualityConstraintsSparqlMaxMillis');
209
+		$this->instanceOfId = $config->get('WBQualityConstraintsInstanceOfId');
210
+		$this->subclassOfId = $config->get('WBQualityConstraintsSubclassOfId');
211
+		$this->cacheMapSize = $config->get('WBQualityConstraintsFormatCacheMapSize');
212 212
 		$this->timeoutExceptionClasses = $config->get(
213 213
 			'WBQualityConstraintsSparqlTimeoutExceptionClasses'
214 214
 		);
215 215
 		$this->sparqlHasWikibaseSupport = $config->get(
216 216
 			'WBQualityConstraintsSparqlHasWikibaseSupport'
217 217
 		);
218
-		$this->sparqlThrottlingFallbackDuration = (int)$config->get(
218
+		$this->sparqlThrottlingFallbackDuration = (int) $config->get(
219 219
 			'WBQualityConstraintsSparqlThrottlingFallbackDuration'
220 220
 		);
221 221
 
222
-		$this->prefixes = $this->getQueryPrefixes( $rdfVocabulary );
222
+		$this->prefixes = $this->getQueryPrefixes($rdfVocabulary);
223 223
 	}
224 224
 
225
-	private function getQueryPrefixes( RdfVocabulary $rdfVocabulary ) {
225
+	private function getQueryPrefixes(RdfVocabulary $rdfVocabulary) {
226 226
 		// TODO: it would probably be smarter that RdfVocubulary exposed these prefixes somehow
227 227
 		$prefixes = '';
228
-		foreach ( $rdfVocabulary->entityNamespaceNames as $sourceName => $namespaceName ) {
228
+		foreach ($rdfVocabulary->entityNamespaceNames as $sourceName => $namespaceName) {
229 229
 			$prefixes .= <<<END
230
-PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n
230
+PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n
231 231
 END;
232 232
 		}
233 233
 		$prefixes .= <<<END
234
-PREFIX wds: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_STATEMENT )}>
235
-PREFIX wdv: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_VALUE )}>\n
234
+PREFIX wds: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_STATEMENT)}>
235
+PREFIX wdv: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_VALUE)}>\n
236 236
 END;
237 237
 
238
-		foreach ( $rdfVocabulary->propertyNamespaceNames as $sourceName => $sourceNamespaces ) {
238
+		foreach ($rdfVocabulary->propertyNamespaceNames as $sourceName => $sourceNamespaces) {
239 239
 			$namespaceName = $sourceNamespaces[RdfVocabulary::NSP_DIRECT_CLAIM];
240 240
 			$prefixes .= <<<END
241
-PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n
241
+PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n
242 242
 END;
243 243
 			$namespaceName = $sourceNamespaces[RdfVocabulary::NSP_CLAIM];
244 244
 			$prefixes .= <<<END
245
-PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n
245
+PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n
246 246
 END;
247 247
 			$namespaceName = $sourceNamespaces[RdfVocabulary::NSP_CLAIM_STATEMENT];
248 248
 			$prefixes .= <<<END
249
-PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n
249
+PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n
250 250
 END;
251 251
 			$namespaceName = $sourceNamespaces[RdfVocabulary::NSP_QUALIFIER];
252 252
 			$prefixes .= <<<END
253
-PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n
253
+PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n
254 254
 END;
255 255
 			$namespaceName = $sourceNamespaces[RdfVocabulary::NSP_QUALIFIER_VALUE];
256 256
 			$prefixes .= <<<END
257
-PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n
257
+PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n
258 258
 END;
259 259
 			$namespaceName = $sourceNamespaces[RdfVocabulary::NSP_REFERENCE];
260 260
 			$prefixes .= <<<END
261
-PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n
261
+PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n
262 262
 END;
263 263
 			$namespaceName = $sourceNamespaces[RdfVocabulary::NSP_REFERENCE_VALUE];
264 264
 			$prefixes .= <<<END
265
-PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n
265
+PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n
266 266
 END;
267 267
 		}
268 268
 		$prefixes .= <<<END
269
-PREFIX wikibase: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_ONTOLOGY )}>\n
269
+PREFIX wikibase: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_ONTOLOGY)}>\n
270 270
 END;
271 271
 		return $prefixes;
272 272
 	}
@@ -278,21 +278,20 @@  discard block
 block discarded – undo
278 278
 	 * @return CachedBool
279 279
 	 * @throws SparqlHelperException if the query times out or some other error occurs
280 280
 	 */
281
-	public function hasType( $id, array $classes ) {
281
+	public function hasType($id, array $classes) {
282 282
 		// TODO hint:gearing is a workaround for T168973 and can hopefully be removed eventually
283 283
 		$gearingHint = $this->sparqlHasWikibaseSupport ?
284
-			' hint:Prior hint:gearing "forward".' :
285
-			'';
284
+			' hint:Prior hint:gearing "forward".' : '';
286 285
 
287 286
 		$metadatas = [];
288 287
 
289
-		foreach ( array_chunk( $classes, 20 ) as $classesChunk ) {
290
-			$classesValues = implode( ' ', array_map(
291
-				static function ( $class ) {
292
-					return 'wd:' . $class;
288
+		foreach (array_chunk($classes, 20) as $classesChunk) {
289
+			$classesValues = implode(' ', array_map(
290
+				static function($class) {
291
+					return 'wd:'.$class;
293 292
 				},
294 293
 				$classesChunk
295
-			) );
294
+			));
296 295
 
297 296
 			$query = <<<EOF
298 297
 ASK {
@@ -302,19 +301,19 @@  discard block
 block discarded – undo
302 301
 }
303 302
 EOF;
304 303
 
305
-			$result = $this->runQuery( $query );
304
+			$result = $this->runQuery($query);
306 305
 			$metadatas[] = $result->getMetadata();
307
-			if ( $result->getArray()['boolean'] ) {
306
+			if ($result->getArray()['boolean']) {
308 307
 				return new CachedBool(
309 308
 					true,
310
-					Metadata::merge( $metadatas )
309
+					Metadata::merge($metadatas)
311 310
 				);
312 311
 			}
313 312
 		}
314 313
 
315 314
 		return new CachedBool(
316 315
 			false,
317
-			Metadata::merge( $metadatas )
316
+			Metadata::merge($metadatas)
318 317
 		);
319 318
 	}
320 319
 
@@ -325,7 +324,7 @@  discard block
 block discarded – undo
325 324
 	 * @param PropertyId $separator
326 325
 	 * @return string
327 326
 	 */
328
-	private function nestedSeparatorFilter( PropertyId $separator ) {
327
+	private function nestedSeparatorFilter(PropertyId $separator) {
329 328
 		$filter = <<<EOF
330 329
   MINUS {
331 330
     ?statement pq:$separator ?qualifier.
@@ -369,10 +368,10 @@  discard block
 block discarded – undo
369 368
 		$pid = $statement->getPropertyId()->serialize();
370 369
 		$guid = $statement->getGuid();
371 370
 		'@phan-var string $guid'; // statement must have a non-null GUID
372
-		$guidForRdf = str_replace( '$', '-', $guid );
371
+		$guidForRdf = str_replace('$', '-', $guid);
373 372
 
374
-		$separatorFilters = array_map( [ $this, 'nestedSeparatorFilter' ], $separators );
375
-		$finalSeparatorFilter = implode( "\n", $separatorFilters );
373
+		$separatorFilters = array_map([$this, 'nestedSeparatorFilter'], $separators);
374
+		$finalSeparatorFilter = implode("\n", $separatorFilters);
376 375
 
377 376
 		$query = <<<EOF
378 377
 SELECT DISTINCT ?otherEntity WHERE {
@@ -390,9 +389,9 @@  discard block
 block discarded – undo
390 389
 LIMIT 10
391 390
 EOF;
392 391
 
393
-		$result = $this->runQuery( $query );
392
+		$result = $this->runQuery($query);
394 393
 
395
-		return $this->getOtherEntities( $result );
394
+		return $this->getOtherEntities($result);
396 395
 	}
397 396
 
398 397
 	/**
@@ -417,16 +416,15 @@  discard block
 block discarded – undo
417 416
 		$dataType = $this->propertyDataTypeLookup->getDataTypeIdForProperty(
418 417
 			$snak->getPropertyId()
419 418
 		);
420
-		list( $value, $isFullValue ) = $this->getRdfLiteral( $dataType, $dataValue );
421
-		if ( $isFullValue ) {
419
+		list($value, $isFullValue) = $this->getRdfLiteral($dataType, $dataValue);
420
+		if ($isFullValue) {
422 421
 			$prefix .= 'v';
423 422
 		}
424 423
 		$path = $type === Context::TYPE_QUALIFIER ?
425
-			"$prefix:$pid" :
426
-			"prov:wasDerivedFrom/$prefix:$pid";
424
+			"$prefix:$pid" : "prov:wasDerivedFrom/$prefix:$pid";
427 425
 
428 426
 		$deprecatedFilter = '';
429
-		if ( $ignoreDeprecatedStatements ) {
427
+		if ($ignoreDeprecatedStatements) {
430 428
 			$deprecatedFilter = <<< EOF
431 429
   MINUS { ?otherStatement wikibase:rank wikibase:DeprecatedRank. }
432 430
 EOF;
@@ -446,9 +444,9 @@  discard block
 block discarded – undo
446 444
 LIMIT 10
447 445
 EOF;
448 446
 
449
-		$result = $this->runQuery( $query );
447
+		$result = $this->runQuery($query);
450 448
 
451
-		return $this->getOtherEntities( $result );
449
+		return $this->getOtherEntities($result);
452 450
 	}
453 451
 
454 452
 	/**
@@ -458,8 +456,8 @@  discard block
 block discarded – undo
458 456
 	 *
459 457
 	 * @return string
460 458
 	 */
461
-	private function stringLiteral( $text ) {
462
-		return '"' . strtr( $text, [ '"' => '\\"', '\\' => '\\\\' ] ) . '"';
459
+	private function stringLiteral($text) {
460
+		return '"'.strtr($text, ['"' => '\\"', '\\' => '\\\\']).'"';
463 461
 	}
464 462
 
465 463
 	/**
@@ -469,18 +467,18 @@  discard block
 block discarded – undo
469 467
 	 *
470 468
 	 * @return CachedEntityIds
471 469
 	 */
472
-	private function getOtherEntities( CachedQueryResults $results ) {
473
-		return new CachedEntityIds( array_map(
474
-			function ( $resultBindings ) {
470
+	private function getOtherEntities(CachedQueryResults $results) {
471
+		return new CachedEntityIds(array_map(
472
+			function($resultBindings) {
475 473
 				$entityIRI = $resultBindings['otherEntity']['value'];
476
-				foreach ( $this->entityPrefixes as $entityPrefix ) {
477
-					$entityPrefixLength = strlen( $entityPrefix );
478
-					if ( substr( $entityIRI, 0, $entityPrefixLength ) === $entityPrefix ) {
474
+				foreach ($this->entityPrefixes as $entityPrefix) {
475
+					$entityPrefixLength = strlen($entityPrefix);
476
+					if (substr($entityIRI, 0, $entityPrefixLength) === $entityPrefix) {
479 477
 						try {
480 478
 							return $this->entityIdParser->parse(
481
-								substr( $entityIRI, $entityPrefixLength )
479
+								substr($entityIRI, $entityPrefixLength)
482 480
 							);
483
-						} catch ( EntityIdParsingException $e ) {
481
+						} catch (EntityIdParsingException $e) {
484 482
 							// fall through
485 483
 						}
486 484
 					}
@@ -491,7 +489,7 @@  discard block
 block discarded – undo
491 489
 				return null;
492 490
 			},
493 491
 			$results->getArray()['results']['bindings']
494
-		), $results->getMetadata() );
492
+		), $results->getMetadata());
495 493
 	}
496 494
 
497 495
 	// phpcs:disable Generic.Metrics.CyclomaticComplexity,Squiz.WhiteSpace.FunctionSpacing
@@ -504,50 +502,50 @@  discard block
 block discarded – undo
504 502
 	 * @return array the literal or IRI as a string in SPARQL syntax,
505 503
 	 * and a boolean indicating whether it refers to a full value node or not
506 504
 	 */
507
-	private function getRdfLiteral( $dataType, DataValue $dataValue ) {
508
-		switch ( $dataType ) {
505
+	private function getRdfLiteral($dataType, DataValue $dataValue) {
506
+		switch ($dataType) {
509 507
 			case 'string':
510 508
 			case 'external-id':
511
-				return [ $this->stringLiteral( $dataValue->getValue() ), false ];
509
+				return [$this->stringLiteral($dataValue->getValue()), false];
512 510
 			case 'commonsMedia':
513
-				$url = $this->rdfVocabulary->getMediaFileURI( $dataValue->getValue() );
514
-				return [ '<' . $url . '>', false ];
511
+				$url = $this->rdfVocabulary->getMediaFileURI($dataValue->getValue());
512
+				return ['<'.$url.'>', false];
515 513
 			case 'geo-shape':
516
-				$url = $this->rdfVocabulary->getGeoShapeURI( $dataValue->getValue() );
517
-				return [ '<' . $url . '>', false ];
514
+				$url = $this->rdfVocabulary->getGeoShapeURI($dataValue->getValue());
515
+				return ['<'.$url.'>', false];
518 516
 			case 'tabular-data':
519
-				$url = $this->rdfVocabulary->getTabularDataURI( $dataValue->getValue() );
520
-				return [ '<' . $url . '>', false ];
517
+				$url = $this->rdfVocabulary->getTabularDataURI($dataValue->getValue());
518
+				return ['<'.$url.'>', false];
521 519
 			case 'url':
522 520
 				$url = $dataValue->getValue();
523
-				if ( !preg_match( '/^[^<>"{}\\\\|^`\\x00-\\x20]*$/D', $url ) ) {
521
+				if (!preg_match('/^[^<>"{}\\\\|^`\\x00-\\x20]*$/D', $url)) {
524 522
 					// not a valid URL for SPARQL (see SPARQL spec, production 139 IRIREF)
525 523
 					// such an URL should never reach us, so just throw
526
-					throw new InvalidArgumentException( 'invalid URL: ' . $url );
524
+					throw new InvalidArgumentException('invalid URL: '.$url);
527 525
 				}
528
-				return [ '<' . $url . '>', false ];
526
+				return ['<'.$url.'>', false];
529 527
 			case 'wikibase-item':
530 528
 			case 'wikibase-property':
531 529
 				/** @var EntityIdValue $dataValue */
532 530
 				'@phan-var EntityIdValue $dataValue';
533
-				return [ 'wd:' . $dataValue->getEntityId()->getSerialization(), false ];
531
+				return ['wd:'.$dataValue->getEntityId()->getSerialization(), false];
534 532
 			case 'monolingualtext':
535 533
 				/** @var MonolingualTextValue $dataValue */
536 534
 				'@phan-var MonolingualTextValue $dataValue';
537 535
 				$lang = $dataValue->getLanguageCode();
538
-				if ( !preg_match( '/^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/D', $lang ) ) {
536
+				if (!preg_match('/^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/D', $lang)) {
539 537
 					// not a valid language tag for SPARQL (see SPARQL spec, production 145 LANGTAG)
540 538
 					// such a language tag should never reach us, so just throw
541
-					throw new InvalidArgumentException( 'invalid language tag: ' . $lang );
539
+					throw new InvalidArgumentException('invalid language tag: '.$lang);
542 540
 				}
543
-				return [ $this->stringLiteral( $dataValue->getText() ) . '@' . $lang, false ];
541
+				return [$this->stringLiteral($dataValue->getText()).'@'.$lang, false];
544 542
 			case 'globe-coordinate':
545 543
 			case 'quantity':
546 544
 			case 'time':
547 545
 				// @phan-suppress-next-line PhanUndeclaredMethod
548
-				return [ 'wdv:' . $dataValue->getHash(), true ];
546
+				return ['wdv:'.$dataValue->getHash(), true];
549 547
 			default:
550
-				throw new InvalidArgumentException( 'unknown data type: ' . $dataType );
548
+				throw new InvalidArgumentException('unknown data type: '.$dataType);
551 549
 		}
552 550
 	}
553 551
 	// phpcs:enable
@@ -560,43 +558,43 @@  discard block
 block discarded – undo
560 558
 	 * @throws SparqlHelperException if the query times out or some other error occurs
561 559
 	 * @throws ConstraintParameterException if the $regex is invalid
562 560
 	 */
563
-	public function matchesRegularExpression( $text, $regex ) {
561
+	public function matchesRegularExpression($text, $regex) {
564 562
 		// caching wrapper around matchesRegularExpressionWithSparql
565 563
 
566
-		$textHash = hash( 'sha256', $text );
564
+		$textHash = hash('sha256', $text);
567 565
 		$cacheKey = $this->cache->makeKey(
568 566
 			'WikibaseQualityConstraints', // extension
569 567
 			'regex', // action
570 568
 			'WDQS-Java', // regex flavor
571
-			hash( 'sha256', $regex )
569
+			hash('sha256', $regex)
572 570
 		);
573 571
 
574 572
 		$cacheMapArray = $this->cache->getWithSetCallback(
575 573
 			$cacheKey,
576 574
 			WANObjectCache::TTL_DAY,
577
-			function ( $cacheMapArray ) use ( $text, $regex, $textHash ) {
575
+			function($cacheMapArray) use ($text, $regex, $textHash) {
578 576
 				// Initialize the cache map if not set
579
-				if ( $cacheMapArray === false ) {
577
+				if ($cacheMapArray === false) {
580 578
 					$key = 'wikibase.quality.constraints.regex.cache.refresh.init';
581
-					$this->dataFactory->increment( $key );
579
+					$this->dataFactory->increment($key);
582 580
 					return [];
583 581
 				}
584 582
 
585 583
 				$key = 'wikibase.quality.constraints.regex.cache.refresh';
586
-				$this->dataFactory->increment( $key );
587
-				$cacheMap = MapCacheLRU::newFromArray( $cacheMapArray, $this->cacheMapSize );
588
-				if ( $cacheMap->has( $textHash ) ) {
584
+				$this->dataFactory->increment($key);
585
+				$cacheMap = MapCacheLRU::newFromArray($cacheMapArray, $this->cacheMapSize);
586
+				if ($cacheMap->has($textHash)) {
589 587
 					$key = 'wikibase.quality.constraints.regex.cache.refresh.hit';
590
-					$this->dataFactory->increment( $key );
591
-					$cacheMap->get( $textHash ); // ping cache
588
+					$this->dataFactory->increment($key);
589
+					$cacheMap->get($textHash); // ping cache
592 590
 				} else {
593 591
 					$key = 'wikibase.quality.constraints.regex.cache.refresh.miss';
594
-					$this->dataFactory->increment( $key );
592
+					$this->dataFactory->increment($key);
595 593
 					try {
596
-						$matches = $this->matchesRegularExpressionWithSparql( $text, $regex );
597
-					} catch ( ConstraintParameterException $e ) {
598
-						$matches = $this->serializeConstraintParameterException( $e );
599
-					} catch ( SparqlHelperException $e ) {
594
+						$matches = $this->matchesRegularExpressionWithSparql($text, $regex);
595
+					} catch (ConstraintParameterException $e) {
596
+						$matches = $this->serializeConstraintParameterException($e);
597
+					} catch (SparqlHelperException $e) {
600 598
 						// don’t cache this
601 599
 						return $cacheMap->toArray();
602 600
 					}
@@ -620,42 +618,42 @@  discard block
 block discarded – undo
620 618
 			]
621 619
 		);
622 620
 
623
-		if ( isset( $cacheMapArray[$textHash] ) ) {
621
+		if (isset($cacheMapArray[$textHash])) {
624 622
 			$key = 'wikibase.quality.constraints.regex.cache.hit';
625
-			$this->dataFactory->increment( $key );
623
+			$this->dataFactory->increment($key);
626 624
 			$matches = $cacheMapArray[$textHash];
627
-			if ( is_bool( $matches ) ) {
625
+			if (is_bool($matches)) {
628 626
 				return $matches;
629
-			} elseif ( is_array( $matches ) &&
630
-				$matches['type'] == ConstraintParameterException::class ) {
631
-				throw $this->deserializeConstraintParameterException( $matches );
627
+			} elseif (is_array($matches) &&
628
+				$matches['type'] == ConstraintParameterException::class) {
629
+				throw $this->deserializeConstraintParameterException($matches);
632 630
 			} else {
633 631
 				throw new MWException(
634
-					'Value of unknown type in object cache (' .
635
-					'cache key: ' . $cacheKey . ', ' .
636
-					'cache map key: ' . $textHash . ', ' .
637
-					'value type: ' . gettype( $matches ) . ')'
632
+					'Value of unknown type in object cache ('.
633
+					'cache key: '.$cacheKey.', '.
634
+					'cache map key: '.$textHash.', '.
635
+					'value type: '.gettype($matches).')'
638 636
 				);
639 637
 			}
640 638
 		} else {
641 639
 			$key = 'wikibase.quality.constraints.regex.cache.miss';
642
-			$this->dataFactory->increment( $key );
643
-			return $this->matchesRegularExpressionWithSparql( $text, $regex );
640
+			$this->dataFactory->increment($key);
641
+			return $this->matchesRegularExpressionWithSparql($text, $regex);
644 642
 		}
645 643
 	}
646 644
 
647
-	private function serializeConstraintParameterException( ConstraintParameterException $cpe ) {
645
+	private function serializeConstraintParameterException(ConstraintParameterException $cpe) {
648 646
 		return [
649 647
 			'type' => ConstraintParameterException::class,
650
-			'violationMessage' => $this->violationMessageSerializer->serialize( $cpe->getViolationMessage() ),
648
+			'violationMessage' => $this->violationMessageSerializer->serialize($cpe->getViolationMessage()),
651 649
 		];
652 650
 	}
653 651
 
654
-	private function deserializeConstraintParameterException( array $serialization ) {
652
+	private function deserializeConstraintParameterException(array $serialization) {
655 653
 		$message = $this->violationMessageDeserializer->deserialize(
656 654
 			$serialization['violationMessage']
657 655
 		);
658
-		return new ConstraintParameterException( $message );
656
+		return new ConstraintParameterException($message);
659 657
 	}
660 658
 
661 659
 	/**
@@ -669,25 +667,25 @@  discard block
 block discarded – undo
669 667
 	 * @throws SparqlHelperException if the query times out or some other error occurs
670 668
 	 * @throws ConstraintParameterException if the $regex is invalid
671 669
 	 */
672
-	public function matchesRegularExpressionWithSparql( $text, $regex ) {
673
-		$textStringLiteral = $this->stringLiteral( $text );
674
-		$regexStringLiteral = $this->stringLiteral( '^(?:' . $regex . ')$' );
670
+	public function matchesRegularExpressionWithSparql($text, $regex) {
671
+		$textStringLiteral = $this->stringLiteral($text);
672
+		$regexStringLiteral = $this->stringLiteral('^(?:'.$regex.')$');
675 673
 
676 674
 		$query = <<<EOF
677 675
 SELECT (REGEX($textStringLiteral, $regexStringLiteral) AS ?matches) {}
678 676
 EOF;
679 677
 
680
-		$result = $this->runQuery( $query, false );
678
+		$result = $this->runQuery($query, false);
681 679
 
682 680
 		$vars = $result->getArray()['results']['bindings'][0];
683
-		if ( array_key_exists( 'matches', $vars ) ) {
681
+		if (array_key_exists('matches', $vars)) {
684 682
 			// true or false ⇒ regex okay, text matches or not
685 683
 			return $vars['matches']['value'] === 'true';
686 684
 		} else {
687 685
 			// empty result: regex broken
688 686
 			throw new ConstraintParameterException(
689
-				( new ViolationMessage( 'wbqc-violation-message-parameter-regex' ) )
690
-					->withInlineCode( $regex, Role::CONSTRAINT_PARAMETER_VALUE )
687
+				(new ViolationMessage('wbqc-violation-message-parameter-regex'))
688
+					->withInlineCode($regex, Role::CONSTRAINT_PARAMETER_VALUE)
691 689
 			);
692 690
 		}
693 691
 	}
@@ -699,14 +697,14 @@  discard block
 block discarded – undo
699 697
 	 *
700 698
 	 * @return boolean
701 699
 	 */
702
-	public function isTimeout( $responseContent ) {
703
-		$timeoutRegex = implode( '|', array_map(
704
-			static function ( $fqn ) {
705
-				return preg_quote( $fqn, '/' );
700
+	public function isTimeout($responseContent) {
701
+		$timeoutRegex = implode('|', array_map(
702
+			static function($fqn) {
703
+				return preg_quote($fqn, '/');
706 704
 			},
707 705
 			$this->timeoutExceptionClasses
708
-		) );
709
-		return (bool)preg_match( '/' . $timeoutRegex . '/', $responseContent );
706
+		));
707
+		return (bool) preg_match('/'.$timeoutRegex.'/', $responseContent);
710 708
 	}
711 709
 
712 710
 	/**
@@ -718,17 +716,17 @@  discard block
 block discarded – undo
718 716
 	 * @return int|boolean the max-age (in seconds)
719 717
 	 * or a plain boolean if no max-age can be determined
720 718
 	 */
721
-	public function getCacheMaxAge( $responseHeaders ) {
719
+	public function getCacheMaxAge($responseHeaders) {
722 720
 		if (
723
-			array_key_exists( 'x-cache-status', $responseHeaders ) &&
724
-			preg_match( '/^hit(?:-.*)?$/', $responseHeaders['x-cache-status'][0] )
721
+			array_key_exists('x-cache-status', $responseHeaders) &&
722
+			preg_match('/^hit(?:-.*)?$/', $responseHeaders['x-cache-status'][0])
725 723
 		) {
726 724
 			$maxage = [];
727 725
 			if (
728
-				array_key_exists( 'cache-control', $responseHeaders ) &&
729
-				preg_match( '/\bmax-age=(\d+)\b/', $responseHeaders['cache-control'][0], $maxage )
726
+				array_key_exists('cache-control', $responseHeaders) &&
727
+				preg_match('/\bmax-age=(\d+)\b/', $responseHeaders['cache-control'][0], $maxage)
730 728
 			) {
731
-				return intval( $maxage[1] );
729
+				return intval($maxage[1]);
732 730
 			} else {
733 731
 				return true;
734 732
 			}
@@ -749,34 +747,34 @@  discard block
 block discarded – undo
749 747
 	 * or SparlHelper::EMPTY_RETRY_AFTER if there is an empty Retry-After
750 748
 	 * or SparlHelper::INVALID_RETRY_AFTER if there is something wrong with the format
751 749
 	 */
752
-	public function getThrottling( MWHttpRequest $request ) {
753
-		$retryAfterValue = $request->getResponseHeader( 'Retry-After' );
754
-		if ( $retryAfterValue === null ) {
750
+	public function getThrottling(MWHttpRequest $request) {
751
+		$retryAfterValue = $request->getResponseHeader('Retry-After');
752
+		if ($retryAfterValue === null) {
755 753
 			return self::NO_RETRY_AFTER;
756 754
 		}
757 755
 
758
-		$trimmedRetryAfterValue = trim( $retryAfterValue );
759
-		if ( empty( $trimmedRetryAfterValue ) ) {
756
+		$trimmedRetryAfterValue = trim($retryAfterValue);
757
+		if (empty($trimmedRetryAfterValue)) {
760 758
 			return self::EMPTY_RETRY_AFTER;
761 759
 		}
762 760
 
763
-		if ( is_numeric( $trimmedRetryAfterValue ) ) {
764
-			$delaySeconds = (int)$trimmedRetryAfterValue;
765
-			if ( $delaySeconds >= 0 ) {
766
-				return $this->getTimestampInFuture( new DateInterval( 'PT' . $delaySeconds . 'S' ) );
761
+		if (is_numeric($trimmedRetryAfterValue)) {
762
+			$delaySeconds = (int) $trimmedRetryAfterValue;
763
+			if ($delaySeconds >= 0) {
764
+				return $this->getTimestampInFuture(new DateInterval('PT'.$delaySeconds.'S'));
767 765
 			}
768 766
 		} else {
769
-			$return = strtotime( $trimmedRetryAfterValue );
770
-			if ( !empty( $return ) ) {
771
-				return new ConvertibleTimestamp( $return );
767
+			$return = strtotime($trimmedRetryAfterValue);
768
+			if (!empty($return)) {
769
+				return new ConvertibleTimestamp($return);
772 770
 			}
773 771
 		}
774 772
 		return self::INVALID_RETRY_AFTER;
775 773
 	}
776 774
 
777
-	private function getTimestampInFuture( DateInterval $delta ) {
775
+	private function getTimestampInFuture(DateInterval $delta) {
778 776
 		$now = new ConvertibleTimestamp();
779
-		return new ConvertibleTimestamp( $now->timestamp->add( $delta ) );
777
+		return new ConvertibleTimestamp($now->timestamp->add($delta));
780 778
 	}
781 779
 
782 780
 	/**
@@ -790,65 +788,64 @@  discard block
 block discarded – undo
790 788
 	 *
791 789
 	 * @throws SparqlHelperException if the query times out or some other error occurs
792 790
 	 */
793
-	public function runQuery( $query, $needsPrefixes = true ) {
791
+	public function runQuery($query, $needsPrefixes = true) {
794 792
 
795
-		if ( $this->throttlingLock->isLocked( self::EXPIRY_LOCK_ID ) ) {
796
-			$this->dataFactory->increment( 'wikibase.quality.constraints.sparql.throttling' );
793
+		if ($this->throttlingLock->isLocked(self::EXPIRY_LOCK_ID)) {
794
+			$this->dataFactory->increment('wikibase.quality.constraints.sparql.throttling');
797 795
 			throw new TooManySparqlRequestsException();
798 796
 		}
799 797
 
800
-		if ( $this->sparqlHasWikibaseSupport ) {
798
+		if ($this->sparqlHasWikibaseSupport) {
801 799
 			$needsPrefixes = false;
802 800
 		}
803 801
 
804
-		if ( $needsPrefixes ) {
805
-			$query = $this->prefixes . $query;
802
+		if ($needsPrefixes) {
803
+			$query = $this->prefixes.$query;
806 804
 		}
807
-		$query = "#wbqc\n" . $query;
805
+		$query = "#wbqc\n".$query;
808 806
 
809
-		$url = $this->endpoint . '?' . http_build_query(
807
+		$url = $this->endpoint.'?'.http_build_query(
810 808
 			[
811 809
 				'query' => $query,
812 810
 				'format' => 'json',
813 811
 				'maxQueryTimeMillis' => $this->maxQueryTimeMillis,
814 812
 			],
815
-			'', ini_get( 'arg_separator.output' ),
813
+			'', ini_get('arg_separator.output'),
816 814
 			// encode spaces with %20, not +
817 815
 			PHP_QUERY_RFC3986
818 816
 		);
819 817
 
820 818
 		$options = [
821 819
 			'method' => 'GET',
822
-			'timeout' => (int)round( ( $this->maxQueryTimeMillis + 1000 ) / 1000 ),
820
+			'timeout' => (int) round(($this->maxQueryTimeMillis + 1000) / 1000),
823 821
 			'connectTimeout' => 'default',
824 822
 			'userAgent' => $this->defaultUserAgent,
825 823
 		];
826
-		$request = $this->requestFactory->create( $url, $options, __METHOD__ );
827
-		$startTime = microtime( true );
824
+		$request = $this->requestFactory->create($url, $options, __METHOD__);
825
+		$startTime = microtime(true);
828 826
 		$requestStatus = $request->execute();
829
-		$endTime = microtime( true );
827
+		$endTime = microtime(true);
830 828
 		$this->dataFactory->timing(
831 829
 			'wikibase.quality.constraints.sparql.timing',
832
-			( $endTime - $startTime ) * 1000
830
+			($endTime - $startTime) * 1000
833 831
 		);
834 832
 
835
-		$this->guardAgainstTooManyRequestsError( $request );
833
+		$this->guardAgainstTooManyRequestsError($request);
836 834
 
837
-		$maxAge = $this->getCacheMaxAge( $request->getResponseHeaders() );
838
-		if ( $maxAge ) {
839
-			$this->dataFactory->increment( 'wikibase.quality.constraints.sparql.cached' );
835
+		$maxAge = $this->getCacheMaxAge($request->getResponseHeaders());
836
+		if ($maxAge) {
837
+			$this->dataFactory->increment('wikibase.quality.constraints.sparql.cached');
840 838
 		}
841 839
 
842
-		if ( $requestStatus->isOK() ) {
840
+		if ($requestStatus->isOK()) {
843 841
 			$json = $request->getContent();
844
-			$jsonStatus = FormatJson::parse( $json, FormatJson::FORCE_ASSOC );
845
-			if ( $jsonStatus->isOK() ) {
842
+			$jsonStatus = FormatJson::parse($json, FormatJson::FORCE_ASSOC);
843
+			if ($jsonStatus->isOK()) {
846 844
 				return new CachedQueryResults(
847 845
 					$jsonStatus->getValue(),
848 846
 					Metadata::ofCachingMetadata(
849 847
 						$maxAge ?
850
-							CachingMetadata::ofMaximumAgeInSeconds( $maxAge ) :
851
-							CachingMetadata::fresh()
848
+							CachingMetadata::ofMaximumAgeInSeconds($maxAge) : CachingMetadata::fresh()
852 849
 					)
853 850
 				);
854 851
 			} else {
@@ -865,9 +862,9 @@  discard block
 block discarded – undo
865 862
 			// fall through to general error handling
866 863
 		}
867 864
 
868
-		$this->dataFactory->increment( 'wikibase.quality.constraints.sparql.error' );
865
+		$this->dataFactory->increment('wikibase.quality.constraints.sparql.error');
869 866
 
870
-		if ( $this->isTimeout( $request->getContent() ) ) {
867
+		if ($this->isTimeout($request->getContent())) {
871 868
 			$this->dataFactory->increment(
872 869
 				'wikibase.quality.constraints.sparql.error.timeout'
873 870
 			);
@@ -882,29 +879,29 @@  discard block
 block discarded – undo
882 879
 	 * @param MWHttpRequest $request
883 880
 	 * @throws TooManySparqlRequestsException
884 881
 	 */
885
-	private function guardAgainstTooManyRequestsError( MWHttpRequest $request ): void {
886
-		if ( $request->getStatus() !== self::HTTP_TOO_MANY_REQUESTS ) {
882
+	private function guardAgainstTooManyRequestsError(MWHttpRequest $request): void {
883
+		if ($request->getStatus() !== self::HTTP_TOO_MANY_REQUESTS) {
887 884
 			return;
888 885
 		}
889 886
 
890 887
 		$fallbackBlockDuration = $this->sparqlThrottlingFallbackDuration;
891 888
 
892
-		if ( $fallbackBlockDuration < 0 ) {
893
-			throw new InvalidArgumentException( 'Fallback duration must be positive int but is: ' .
894
-				$fallbackBlockDuration );
889
+		if ($fallbackBlockDuration < 0) {
890
+			throw new InvalidArgumentException('Fallback duration must be positive int but is: '.
891
+				$fallbackBlockDuration);
895 892
 		}
896 893
 
897
-		$this->dataFactory->increment( 'wikibase.quality.constraints.sparql.throttling' );
898
-		$throttlingUntil = $this->getThrottling( $request );
899
-		if ( !( $throttlingUntil instanceof ConvertibleTimestamp ) ) {
900
-			$this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterInvalid( $request );
894
+		$this->dataFactory->increment('wikibase.quality.constraints.sparql.throttling');
895
+		$throttlingUntil = $this->getThrottling($request);
896
+		if (!($throttlingUntil instanceof ConvertibleTimestamp)) {
897
+			$this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterInvalid($request);
901 898
 			$this->throttlingLock->lock(
902 899
 				self::EXPIRY_LOCK_ID,
903
-				$this->getTimestampInFuture( new DateInterval( 'PT' . $fallbackBlockDuration . 'S' ) )
900
+				$this->getTimestampInFuture(new DateInterval('PT'.$fallbackBlockDuration.'S'))
904 901
 			);
905 902
 		} else {
906
-			$this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterPresent( $throttlingUntil, $request );
907
-			$this->throttlingLock->lock( self::EXPIRY_LOCK_ID, $throttlingUntil );
903
+			$this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterPresent($throttlingUntil, $request);
904
+			$this->throttlingLock->lock(self::EXPIRY_LOCK_ID, $throttlingUntil);
908 905
 		}
909 906
 		throw new TooManySparqlRequestsException();
910 907
 	}
Please login to merge, or discard this patch.