Completed
Push — master ( b1ce3a...b48584 )
by
unknown
05:24 queued 02:31
created
src/ConstraintCheck/Checker/ValueTypeChecker.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -98,37 +98,37 @@  discard block
 block discarded – undo
98 98
 	 * @throws SparqlHelperException if the checker uses SPARQL and the query times out or some other error occurs
99 99
 	 * @return CheckResult
100 100
 	 */
101
-	public function checkConstraint( Context $context, Constraint $constraint ) {
102
-		if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) {
103
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED );
101
+	public function checkConstraint(Context $context, Constraint $constraint) {
102
+		if ($context->getSnakRank() === Statement::RANK_DEPRECATED) {
103
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED);
104 104
 		}
105 105
 
106 106
 		$parameters = [];
107 107
 		$constraintParameters = $constraint->getConstraintParameters();
108 108
 
109
-		$classes = $this->constraintParameterParser->parseClassParameter( $constraintParameters, $constraint->getConstraintTypeItemId() );
109
+		$classes = $this->constraintParameterParser->parseClassParameter($constraintParameters, $constraint->getConstraintTypeItemId());
110 110
 		$parameters['class'] = array_map(
111
-			function( $id ) {
112
-				return new ItemId( $id );
111
+			function($id) {
112
+				return new ItemId($id);
113 113
 			},
114 114
 			$classes
115 115
 		);
116 116
 
117
-		$relation = $this->constraintParameterParser->parseRelationParameter( $constraintParameters, $constraint->getConstraintTypeItemId() );
117
+		$relation = $this->constraintParameterParser->parseRelationParameter($constraintParameters, $constraint->getConstraintTypeItemId());
118 118
 		$relationIds = [];
119
-		if ( $relation === 'instance' || $relation === 'instanceOrSubclass' ) {
120
-			$relationIds[] = $this->config->get( 'WBQualityConstraintsInstanceOfId' );
119
+		if ($relation === 'instance' || $relation === 'instanceOrSubclass') {
120
+			$relationIds[] = $this->config->get('WBQualityConstraintsInstanceOfId');
121 121
 		}
122
-		if ( $relation === 'subclass' || $relation === 'instanceOrSubclass' ) {
123
-			$relationIds[] = $this->config->get( 'WBQualityConstraintsSubclassOfId' );
122
+		if ($relation === 'subclass' || $relation === 'instanceOrSubclass') {
123
+			$relationIds[] = $this->config->get('WBQualityConstraintsSubclassOfId');
124 124
 		}
125
-		$parameters['relation'] = [ $relation ];
125
+		$parameters['relation'] = [$relation];
126 126
 
127 127
 		$snak = $context->getSnak();
128 128
 
129
-		if ( !$snak instanceof PropertyValueSnak ) {
129
+		if (!$snak instanceof PropertyValueSnak) {
130 130
 			// nothing to check
131
-			return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE );
131
+			return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE);
132 132
 		}
133 133
 
134 134
 		$dataValue = $snak->getDataValue();
@@ -137,22 +137,22 @@  discard block
 block discarded – undo
137 137
 		 * error handling:
138 138
 		 *   type of $dataValue for properties with 'Value type' constraint has to be 'wikibase-entityid'
139 139
 		 */
140
-		if ( $dataValue->getType() !== 'wikibase-entityid' ) {
141
-			$message = wfMessage( "wbqc-violation-message-value-needed-of-type" )
140
+		if ($dataValue->getType() !== 'wikibase-entityid') {
141
+			$message = wfMessage("wbqc-violation-message-value-needed-of-type")
142 142
 				->rawParams(
143
-					$this->constraintParameterRenderer->formatItemId( $constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM ),
143
+					$this->constraintParameterRenderer->formatItemId($constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM),
144 144
 					'wikibase-entityid' // TODO is there a message for this type so we can localize it?
145 145
 				)
146 146
 				->escaped();
147
-			return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message );
147
+			return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message);
148 148
 		}
149 149
 		/** @var EntityIdValue $dataValue */
150 150
 
151
-		$item = $this->entityLookup->getEntity( $dataValue->getEntityId() );
151
+		$item = $this->entityLookup->getEntity($dataValue->getEntityId());
152 152
 
153
-		if ( !( $item instanceof StatementListProvider ) ) {
154
-			$message = new ViolationMessage( 'wbqc-violation-message-value-entity-must-exist' );
155
-			return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message );
153
+		if (!($item instanceof StatementListProvider)) {
154
+			$message = new ViolationMessage('wbqc-violation-message-value-entity-must-exist');
155
+			return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message);
156 156
 		}
157 157
 
158 158
 		$statements = $item->getStatements();
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 			$classes
164 164
 		);
165 165
 
166
-		if ( $result->getBool() ) {
166
+		if ($result->getBool()) {
167 167
 			$message = null;
168 168
 			$status = CheckResult::STATUS_COMPLIANCE;
169 169
 		} else {
@@ -177,21 +177,21 @@  discard block
 block discarded – undo
177 177
 			$status = CheckResult::STATUS_VIOLATION;
178 178
 		}
179 179
 
180
-		return ( new CheckResult( $context, $constraint, $parameters, $status, $message ) )
181
-			->withMetadata( $result->getMetadata() );
180
+		return (new CheckResult($context, $constraint, $parameters, $status, $message))
181
+			->withMetadata($result->getMetadata());
182 182
 	}
183 183
 
184
-	public function checkConstraintParameters( Constraint $constraint ) {
184
+	public function checkConstraintParameters(Constraint $constraint) {
185 185
 		$constraintParameters = $constraint->getConstraintParameters();
186 186
 		$exceptions = [];
187 187
 		try {
188
-			$this->constraintParameterParser->parseClassParameter( $constraintParameters, $constraint->getConstraintTypeItemId() );
189
-		} catch ( ConstraintParameterException $e ) {
188
+			$this->constraintParameterParser->parseClassParameter($constraintParameters, $constraint->getConstraintTypeItemId());
189
+		} catch (ConstraintParameterException $e) {
190 190
 			$exceptions[] = $e;
191 191
 		}
192 192
 		try {
193
-			$this->constraintParameterParser->parseRelationParameter( $constraintParameters, $constraint->getConstraintTypeItemId() );
194
-		} catch ( ConstraintParameterException $e ) {
193
+			$this->constraintParameterParser->parseRelationParameter($constraintParameters, $constraint->getConstraintTypeItemId());
194
+		} catch (ConstraintParameterException $e) {
195 195
 			$exceptions[] = $e;
196 196
 		}
197 197
 		return $exceptions;
Please login to merge, or discard this patch.
src/ConstraintCheck/Checker/QualifierChecker.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,16 +47,16 @@
 block discarded – undo
47 47
 	 *
48 48
 	 * @return CheckResult
49 49
 	 */
50
-	public function checkConstraint( Context $context, Constraint $constraint ) {
51
-		if ( $context->getType() === Context::TYPE_QUALIFIER ) {
52
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_COMPLIANCE );
50
+	public function checkConstraint(Context $context, Constraint $constraint) {
51
+		if ($context->getType() === Context::TYPE_QUALIFIER) {
52
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_COMPLIANCE);
53 53
 		} else {
54
-			$message = new ViolationMessage( 'wbqc-violation-message-qualifier' );
55
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_VIOLATION, $message );
54
+			$message = new ViolationMessage('wbqc-violation-message-qualifier');
55
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_VIOLATION, $message);
56 56
 		}
57 57
 	}
58 58
 
59
-	public function checkConstraintParameters( Constraint $constraint ) {
59
+	public function checkConstraintParameters(Constraint $constraint) {
60 60
 		// no parameters
61 61
 		return [];
62 62
 	}
Please login to merge, or discard this patch.
src/ConstraintCheck/Checker/MultiValueChecker.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
 	 *
56 56
 	 * @return CheckResult
57 57
 	 */
58
-	public function checkConstraint( Context $context, Constraint $constraint ) {
59
-		if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) {
60
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED );
58
+	public function checkConstraint(Context $context, Constraint $constraint) {
59
+		if ($context->getSnakRank() === Statement::RANK_DEPRECATED) {
60
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED);
61 61
 		}
62 62
 
63 63
 		$propertyId = $context->getSnak()->getPropertyId();
@@ -69,18 +69,18 @@  discard block
 block discarded – undo
69 69
 			$propertyId
70 70
 		);
71 71
 
72
-		if ( $propertyCount <= 1 ) {
73
-			$message = new ViolationMessage( 'wbqc-violation-message-multi-value' );
72
+		if ($propertyCount <= 1) {
73
+			$message = new ViolationMessage('wbqc-violation-message-multi-value');
74 74
 			$status = CheckResult::STATUS_VIOLATION;
75 75
 		} else {
76 76
 			$message = null;
77 77
 			$status = CheckResult::STATUS_COMPLIANCE;
78 78
 		}
79 79
 
80
-		return new CheckResult( $context, $constraint, $parameters, $status, $message );
80
+		return new CheckResult($context, $constraint, $parameters, $status, $message);
81 81
 	}
82 82
 
83
-	public function checkConstraintParameters( Constraint $constraint ) {
83
+	public function checkConstraintParameters(Constraint $constraint) {
84 84
 		// no parameters
85 85
 		return [];
86 86
 	}
Please login to merge, or discard this patch.
src/ConstraintCheck/Checker/ValueOnlyChecker.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,16 +36,16 @@
 block discarded – undo
36 36
 		];
37 37
 	}
38 38
 
39
-	public function checkConstraint( Context $context, Constraint $constraint ) {
40
-		if ( $context->getType() === Context::TYPE_STATEMENT ) {
41
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_COMPLIANCE );
39
+	public function checkConstraint(Context $context, Constraint $constraint) {
40
+		if ($context->getType() === Context::TYPE_STATEMENT) {
41
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_COMPLIANCE);
42 42
 		} else {
43
-			$message = new ViolationMessage( 'wbqc-violation-message-valueOnly' );
44
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_VIOLATION, $message );
43
+			$message = new ViolationMessage('wbqc-violation-message-valueOnly');
44
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_VIOLATION, $message);
45 45
 		}
46 46
 	}
47 47
 
48
-	public function checkConstraintParameters( Constraint $constraint ) {
48
+	public function checkConstraintParameters(Constraint $constraint) {
49 49
 		// no parameters
50 50
 		return [];
51 51
 	}
Please login to merge, or discard this patch.
src/ConstraintCheck/Checker/ReferenceChecker.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,16 +36,16 @@
 block discarded – undo
36 36
 		];
37 37
 	}
38 38
 
39
-	public function checkConstraint( Context $context, Constraint $constraint ) {
40
-		if ( $context->getType() === Context::TYPE_REFERENCE ) {
41
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_COMPLIANCE );
39
+	public function checkConstraint(Context $context, Constraint $constraint) {
40
+		if ($context->getType() === Context::TYPE_REFERENCE) {
41
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_COMPLIANCE);
42 42
 		} else {
43
-			$message = new ViolationMessage( 'wbqc-violation-message-reference' );
44
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_VIOLATION, $message );
43
+			$message = new ViolationMessage('wbqc-violation-message-reference');
44
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_VIOLATION, $message);
45 45
 		}
46 46
 	}
47 47
 
48
-	public function checkConstraintParameters( Constraint $constraint ) {
48
+	public function checkConstraintParameters(Constraint $constraint) {
49 49
 		// no parameters
50 50
 		return [];
51 51
 	}
Please login to merge, or discard this patch.
src/ConstraintCheck/Checker/DiffWithinRangeChecker.php 1 patch
Spacing   +43 added lines, -44 removed lines patch added patch discarded remove patch
@@ -84,8 +84,8 @@  discard block
 block discarded – undo
84 84
 	 * @throws ConstraintParameterException
85 85
 	 * @return array [ DataValue|null $min, DataValue|null $max, PropertyId $property, array $parameters ]
86 86
 	 */
87
-	private function parseConstraintParameters( Constraint $constraint ) {
88
-		list( $min, $max ) = $this->constraintParameterParser->parseRangeParameter(
87
+	private function parseConstraintParameters(Constraint $constraint) {
88
+		list($min, $max) = $this->constraintParameterParser->parseRangeParameter(
89 89
 			$constraint->getConstraintParameters(),
90 90
 			$constraint->getConstraintTypeItemId(),
91 91
 			'quantity'
@@ -95,15 +95,15 @@  discard block
 block discarded – undo
95 95
 			$constraint->getConstraintTypeItemId()
96 96
 		);
97 97
 
98
-		if ( $min !== null ) {
99
-			$parameters['minimum_quantity'] = [ $min ];
98
+		if ($min !== null) {
99
+			$parameters['minimum_quantity'] = [$min];
100 100
 		}
101
-		if ( $max !== null ) {
102
-			$parameters['maximum_quantity'] = [ $max ];
101
+		if ($max !== null) {
102
+			$parameters['maximum_quantity'] = [$max];
103 103
 		}
104
-		$parameters['property'] = [ $property ];
104
+		$parameters['property'] = [$property];
105 105
 
106
-		return [ $min, $max, $property, $parameters ];
106
+		return [$min, $max, $property, $parameters];
107 107
 	}
108 108
 
109 109
 	/**
@@ -113,13 +113,13 @@  discard block
 block discarded – undo
113 113
 	 *
114 114
 	 * @return bool
115 115
 	 */
116
-	private function rangeInYears( $min, $max ) {
117
-		$yearUnit = $this->config->get( 'WBQualityConstraintsYearUnit' );
116
+	private function rangeInYears($min, $max) {
117
+		$yearUnit = $this->config->get('WBQualityConstraintsYearUnit');
118 118
 
119
-		if ( $min !== null && $min->getUnit() === $yearUnit ) {
119
+		if ($min !== null && $min->getUnit() === $yearUnit) {
120 120
 			return true;
121 121
 		}
122
-		if ( $max !== null && $max->getUnit() === $yearUnit ) {
122
+		if ($max !== null && $max->getUnit() === $yearUnit) {
123 123
 			return true;
124 124
 		}
125 125
 
@@ -135,57 +135,56 @@  discard block
 block discarded – undo
135 135
 	 * @throws ConstraintParameterException
136 136
 	 * @return CheckResult
137 137
 	 */
138
-	public function checkConstraint( Context $context, Constraint $constraint ) {
139
-		if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) {
140
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED );
138
+	public function checkConstraint(Context $context, Constraint $constraint) {
139
+		if ($context->getSnakRank() === Statement::RANK_DEPRECATED) {
140
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED);
141 141
 		}
142 142
 
143 143
 		$parameters = [];
144 144
 
145 145
 		$snak = $context->getSnak();
146 146
 
147
-		if ( !$snak instanceof PropertyValueSnak ) {
147
+		if (!$snak instanceof PropertyValueSnak) {
148 148
 			// nothing to check
149
-			return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE );
149
+			return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE);
150 150
 		}
151 151
 
152 152
 		$minuend = $snak->getDataValue();
153 153
 
154 154
 		/** @var PropertyId $property */
155
-		list( $min, $max, $property, $parameters ) = $this->parseConstraintParameters( $constraint );
155
+		list($min, $max, $property, $parameters) = $this->parseConstraintParameters($constraint);
156 156
 
157 157
 		// checks only the first occurrence of the referenced property (this constraint implies a single value constraint on that property)
158
-		foreach ( $context->getSnakGroup() as $otherSnak ) {
158
+		foreach ($context->getSnakGroup() as $otherSnak) {
159 159
 			if (
160
-				!$property->equals( $otherSnak->getPropertyId() ) ||
160
+				!$property->equals($otherSnak->getPropertyId()) ||
161 161
 				!$otherSnak instanceof PropertyValueSnak
162 162
 			) {
163 163
 				continue;
164 164
 			}
165 165
 
166 166
 			$subtrahend = $otherSnak->getDataValue();
167
-			if ( $subtrahend->getType() === $minuend->getType() ) {
168
-				$diff = $this->rangeInYears( $min, $max ) ?
169
-					$this->rangeCheckerHelper->getDifferenceInYears( $minuend, $subtrahend ) :
170
-					$this->rangeCheckerHelper->getDifference( $minuend, $subtrahend );
167
+			if ($subtrahend->getType() === $minuend->getType()) {
168
+				$diff = $this->rangeInYears($min, $max) ?
169
+					$this->rangeCheckerHelper->getDifferenceInYears($minuend, $subtrahend) : $this->rangeCheckerHelper->getDifference($minuend, $subtrahend);
171 170
 
172
-				if ( $this->rangeCheckerHelper->getComparison( $min, $diff ) > 0 ||
173
-					$this->rangeCheckerHelper->getComparison( $diff, $max ) > 0
171
+				if ($this->rangeCheckerHelper->getComparison($min, $diff) > 0 ||
172
+					$this->rangeCheckerHelper->getComparison($diff, $max) > 0
174 173
 				) {
175 174
 					// at least one of $min, $max is set at this point, otherwise there could be no violation
176
-					$openness = $min !== null ? ( $max !== null ? '' : '-rightopen' ) : '-leftopen';
177
-					$message = wfMessage( "wbqc-violation-message-diff-within-range$openness" );
175
+					$openness = $min !== null ? ($max !== null ? '' : '-rightopen') : '-leftopen';
176
+					$message = wfMessage("wbqc-violation-message-diff-within-range$openness");
178 177
 					$message->rawParams(
179
-						$this->constraintParameterRenderer->formatEntityId( $context->getSnak()->getPropertyId(), Role::PREDICATE ),
180
-						$this->constraintParameterRenderer->formatDataValue( $minuend, Role::OBJECT ),
181
-						$this->constraintParameterRenderer->formatEntityId( $otherSnak->getPropertyId(), Role::PREDICATE ),
182
-						$this->constraintParameterRenderer->formatDataValue( $subtrahend, Role::OBJECT )
178
+						$this->constraintParameterRenderer->formatEntityId($context->getSnak()->getPropertyId(), Role::PREDICATE),
179
+						$this->constraintParameterRenderer->formatDataValue($minuend, Role::OBJECT),
180
+						$this->constraintParameterRenderer->formatEntityId($otherSnak->getPropertyId(), Role::PREDICATE),
181
+						$this->constraintParameterRenderer->formatDataValue($subtrahend, Role::OBJECT)
183 182
 					);
184
-					if ( $min !== null ) {
185
-						$message->rawParams( $this->constraintParameterRenderer->formatDataValue( $min, Role::OBJECT ) );
183
+					if ($min !== null) {
184
+						$message->rawParams($this->constraintParameterRenderer->formatDataValue($min, Role::OBJECT));
186 185
 					}
187
-					if ( $max !== null ) {
188
-						$message->rawParams( $this->constraintParameterRenderer->formatDataValue( $max, Role::OBJECT ) );
186
+					if ($max !== null) {
187
+						$message->rawParams($this->constraintParameterRenderer->formatDataValue($max, Role::OBJECT));
189 188
 					}
190 189
 					$message = $message->escaped();
191 190
 					$status = CheckResult::STATUS_VIOLATION;
@@ -194,19 +193,19 @@  discard block
 block discarded – undo
194 193
 					$status = CheckResult::STATUS_COMPLIANCE;
195 194
 				}
196 195
 			} else {
197
-				$message = new ViolationMessage( 'wbqc-violation-message-diff-within-range-must-have-equal-types' );
196
+				$message = new ViolationMessage('wbqc-violation-message-diff-within-range-must-have-equal-types');
198 197
 				$status = CheckResult::STATUS_VIOLATION;
199 198
 			}
200 199
 
201
-			return new CheckResult( $context, $constraint, $parameters, $status, $message );
200
+			return new CheckResult($context, $constraint, $parameters, $status, $message);
202 201
 		}
203 202
 
204
-		$message = new ViolationMessage( 'wbqc-violation-message-diff-within-range-property-must-exist' );
203
+		$message = new ViolationMessage('wbqc-violation-message-diff-within-range-property-must-exist');
205 204
 		$status = CheckResult::STATUS_VIOLATION;
206
-		return new CheckResult( $context, $constraint, $parameters, $status, $message );
205
+		return new CheckResult($context, $constraint, $parameters, $status, $message);
207 206
 	}
208 207
 
209
-	public function checkConstraintParameters( Constraint $constraint ) {
208
+	public function checkConstraintParameters(Constraint $constraint) {
210 209
 		$constraintParameters = $constraint->getConstraintParameters();
211 210
 		$exceptions = [];
212 211
 		try {
@@ -215,12 +214,12 @@  discard block
 block discarded – undo
215 214
 				$constraint->getConstraintTypeItemId(),
216 215
 				'quantity'
217 216
 			);
218
-		} catch ( ConstraintParameterException $e ) {
217
+		} catch (ConstraintParameterException $e) {
219 218
 			$exceptions[] = $e;
220 219
 		}
221 220
 		try {
222
-			$this->constraintParameterParser->parsePropertyParameter( $constraintParameters, $constraint->getConstraintTypeItemId() );
223
-		} catch ( ConstraintParameterException $e ) {
221
+			$this->constraintParameterParser->parsePropertyParameter($constraintParameters, $constraint->getConstraintTypeItemId());
222
+		} catch (ConstraintParameterException $e) {
224 223
 			$exceptions[] = $e;
225 224
 		}
226 225
 		return $exceptions;
Please login to merge, or discard this patch.
src/ConstraintCheck/Checker/SingleValueChecker.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
 	 *
56 56
 	 * @return CheckResult
57 57
 	 */
58
-	public function checkConstraint( Context $context, Constraint $constraint ) {
59
-		if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) {
60
-			return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED );
58
+	public function checkConstraint(Context $context, Constraint $constraint) {
59
+		if ($context->getSnakRank() === Statement::RANK_DEPRECATED) {
60
+			return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED);
61 61
 		}
62 62
 
63 63
 		$propertyId = $context->getSnak()->getPropertyId();
@@ -69,18 +69,18 @@  discard block
 block discarded – undo
69 69
 			$propertyId
70 70
 		);
71 71
 
72
-		if ( $propertyCount > 1 ) {
73
-			$message = new ViolationMessage( 'wbqc-violation-message-single-value' );
72
+		if ($propertyCount > 1) {
73
+			$message = new ViolationMessage('wbqc-violation-message-single-value');
74 74
 			$status = CheckResult::STATUS_VIOLATION;
75 75
 		} else {
76 76
 			$message = null;
77 77
 			$status = CheckResult::STATUS_COMPLIANCE;
78 78
 		}
79 79
 
80
-		return new CheckResult( $context, $constraint, $parameters, $status, $message );
80
+		return new CheckResult($context, $constraint, $parameters, $status, $message);
81 81
 	}
82 82
 
83
-	public function checkConstraintParameters( Constraint $constraint ) {
83
+	public function checkConstraintParameters(Constraint $constraint) {
84 84
 		// no parameters
85 85
 		return [];
86 86
 	}
Please login to merge, or discard this patch.
src/ConstraintCheck/Checker/CommonsLinkChecker.php 1 patch
Spacing   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -78,22 +78,22 @@  discard block
 block discarded – undo
78 78
 	 * @return array first element is the namespace number (default namespace for TitleParser),
79 79
 	 * second element is a string to prepend to the title before giving it to the TitleParser
80 80
 	 */
81
-	private function getCommonsNamespace( $namespace ) {
81
+	private function getCommonsNamespace($namespace) {
82 82
 		// for namespace numbers see mediawiki-config repo, wmf-config/InitialiseSettings.php,
83 83
 		// 'wgExtraNamespaces' key, 'commonswiki' subkey
84
-		switch ( $namespace ) {
84
+		switch ($namespace) {
85 85
 			case '':
86
-				return [ NS_MAIN, '' ];
86
+				return [NS_MAIN, ''];
87 87
 			case 'Creator':
88
-				return [ 100, '' ];
88
+				return [100, ''];
89 89
 			case 'TimedText':
90
-				return [ 102, '' ];
90
+				return [102, ''];
91 91
 			case 'Sequence':
92
-				return [ 104, '' ];
92
+				return [104, ''];
93 93
 			case 'Institution':
94
-				return [ 106, '' ];
94
+				return [106, ''];
95 95
 			default:
96
-				return [ NS_MAIN, $namespace . ':' ];
96
+				return [NS_MAIN, $namespace.':'];
97 97
 		}
98 98
 	}
99 99
 
@@ -106,17 +106,17 @@  discard block
 block discarded – undo
106 106
 	 * @throws ConstraintParameterException
107 107
 	 * @return CheckResult
108 108
 	 */
109
-	public function checkConstraint( Context $context, Constraint $constraint ) {
109
+	public function checkConstraint(Context $context, Constraint $constraint) {
110 110
 		$parameters = [];
111 111
 		$constraintParameters = $constraint->getConstraintParameters();
112
-		$namespace = $this->constraintParameterParser->parseNamespaceParameter( $constraintParameters, $constraint->getConstraintTypeItemId() );
113
-		$parameters['namespace'] = [ $namespace ];
112
+		$namespace = $this->constraintParameterParser->parseNamespaceParameter($constraintParameters, $constraint->getConstraintTypeItemId());
113
+		$parameters['namespace'] = [$namespace];
114 114
 
115 115
 		$snak = $context->getSnak();
116 116
 
117
-		if ( !$snak instanceof PropertyValueSnak ) {
117
+		if (!$snak instanceof PropertyValueSnak) {
118 118
 			// nothing to check
119
-			return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE );
119
+			return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE);
120 120
 		}
121 121
 
122 122
 		$dataValue = $snak->getDataValue();
@@ -126,49 +126,49 @@  discard block
 block discarded – undo
126 126
 		 *   type of $dataValue for properties with 'Commons link' constraint has to be 'string'
127 127
 		 *   parameter $namespace can be null, works for commons galleries
128 128
 		 */
129
-		if ( $dataValue->getType() !== 'string' ) {
130
-			$message = wfMessage( "wbqc-violation-message-value-needed-of-type" )
129
+		if ($dataValue->getType() !== 'string') {
130
+			$message = wfMessage("wbqc-violation-message-value-needed-of-type")
131 131
 					 ->rawParams(
132
-						 $this->constraintParameterRenderer->formatItemId( $constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM ),
133
-						 wfMessage( 'datatypes-type-string' )->escaped()
132
+						 $this->constraintParameterRenderer->formatItemId($constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM),
133
+						 wfMessage('datatypes-type-string')->escaped()
134 134
 					 )
135 135
 					 ->escaped();
136
-			return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message );
136
+			return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message);
137 137
 		}
138 138
 
139 139
 		$commonsLink = $dataValue->getValue();
140 140
 
141 141
 		try {
142
-			if ( !$this->commonsLinkIsWellFormed( $commonsLink ) ) {
143
-				throw new MalformedTitleException( 'wbqc-violation-message-commons-link-not-well-formed', $commonsLink ); // caught below
142
+			if (!$this->commonsLinkIsWellFormed($commonsLink)) {
143
+				throw new MalformedTitleException('wbqc-violation-message-commons-link-not-well-formed', $commonsLink); // caught below
144 144
 			}
145
-			list( $defaultNamespace, $prefix ) = $this->getCommonsNamespace( $namespace );
146
-			$title = $this->titleParser->parseTitle( $prefix . $commonsLink, $defaultNamespace );
147
-			if ( $this->pageExists( $title ) ) {
145
+			list($defaultNamespace, $prefix) = $this->getCommonsNamespace($namespace);
146
+			$title = $this->titleParser->parseTitle($prefix.$commonsLink, $defaultNamespace);
147
+			if ($this->pageExists($title)) {
148 148
 				$message = null;
149 149
 				$status = CheckResult::STATUS_COMPLIANCE;
150 150
 			} else {
151
-				if ( $this->valueIncludesNamespace( $commonsLink, $namespace ) ) {
152
-					throw new MalformedTitleException( 'wbqc-violation-message-commons-link-not-well-formed', $commonsLink ); // caught below
151
+				if ($this->valueIncludesNamespace($commonsLink, $namespace)) {
152
+					throw new MalformedTitleException('wbqc-violation-message-commons-link-not-well-formed', $commonsLink); // caught below
153 153
 				} else {
154
-					$message = new ViolationMessage( 'wbqc-violation-message-commons-link-no-existent' );
154
+					$message = new ViolationMessage('wbqc-violation-message-commons-link-no-existent');
155 155
 					$status = CheckResult::STATUS_VIOLATION;
156 156
 				}
157 157
 			}
158
-		} catch ( MalformedTitleException $e ) {
159
-			$message = new ViolationMessage( 'wbqc-violation-message-commons-link-not-well-formed' );
158
+		} catch (MalformedTitleException $e) {
159
+			$message = new ViolationMessage('wbqc-violation-message-commons-link-not-well-formed');
160 160
 			$status = CheckResult::STATUS_VIOLATION;
161 161
 		}
162 162
 
163
-		return new CheckResult( $context, $constraint, $parameters, $status, $message );
163
+		return new CheckResult($context, $constraint, $parameters, $status, $message);
164 164
 	}
165 165
 
166
-	public function checkConstraintParameters( Constraint $constraint ) {
166
+	public function checkConstraintParameters(Constraint $constraint) {
167 167
 		$constraintParameters = $constraint->getConstraintParameters();
168 168
 		$exceptions = [];
169 169
 		try {
170
-			$this->constraintParameterParser->parseNamespaceParameter( $constraintParameters, $constraint->getConstraintTypeItemId() );
171
-		} catch ( ConstraintParameterException $e ) {
170
+			$this->constraintParameterParser->parseNamespaceParameter($constraintParameters, $constraint->getConstraintTypeItemId());
171
+		} catch (ConstraintParameterException $e) {
172 172
 			$exceptions[] = $e;
173 173
 		}
174 174
 		return $exceptions;
@@ -179,19 +179,19 @@  discard block
 block discarded – undo
179 179
 	 *
180 180
 	 * @return bool
181 181
 	 */
182
-	private function pageExists( TitleValue $title ) {
182
+	private function pageExists(TitleValue $title) {
183 183
 		$commonsWikiId = 'commonswiki';
184
-		if ( defined( 'MW_PHPUNIT_TEST' ) ) {
184
+		if (defined('MW_PHPUNIT_TEST')) {
185 185
 			$commonsWikiId = false;
186 186
 		}
187 187
 
188
-		$dbLoadBalancer = wfGetLB( $commonsWikiId );
188
+		$dbLoadBalancer = wfGetLB($commonsWikiId);
189 189
 		$dbConnection = $dbLoadBalancer->getConnection(
190 190
 			DB_REPLICA, false, $commonsWikiId );
191
-		$row = $dbConnection->selectRow( 'page', '*', [
191
+		$row = $dbConnection->selectRow('page', '*', [
192 192
 			'page_title' => $title->getDBkey(),
193 193
 			'page_namespace' => $title->getNamespace()
194
-		] );
194
+		]);
195 195
 
196 196
 		return $row !== false;
197 197
 	}
@@ -201,9 +201,9 @@  discard block
 block discarded – undo
201 201
 	 *
202 202
 	 * @return bool
203 203
 	 */
204
-	private function commonsLinkIsWellFormed( $commonsLink ) {
205
-		$toReplace = [ "_", "%20" ];
206
-		$compareString = trim( str_replace( $toReplace, '', $commonsLink ) );
204
+	private function commonsLinkIsWellFormed($commonsLink) {
205
+		$toReplace = ["_", "%20"];
206
+		$compareString = trim(str_replace($toReplace, '', $commonsLink));
207 207
 		return $commonsLink === $compareString;
208 208
 	}
209 209
 
@@ -216,9 +216,9 @@  discard block
 block discarded – undo
216 216
 	 *
217 217
 	 * @return bool
218 218
 	 */
219
-	private function valueIncludesNamespace( $value, $namespace ) {
219
+	private function valueIncludesNamespace($value, $namespace) {
220 220
 		return $namespace !== '' &&
221
-			strncasecmp( $value, $namespace . ':', strlen( $namespace ) + 1 ) === 0;
221
+			strncasecmp($value, $namespace.':', strlen($namespace) + 1) === 0;
222 222
 	}
223 223
 
224 224
 }
Please login to merge, or discard this patch.
src/ConstraintCheck/Helper/ConstraintParameterParser.php 1 patch
Spacing   +210 added lines, -210 removed lines patch added patch discarded remove patch
@@ -77,15 +77,15 @@  discard block
 block discarded – undo
77 77
 	 * @param array $parameters
78 78
 	 * @throws ConstraintParameterException
79 79
 	 */
80
-	public function checkError( array $parameters ) {
81
-		if ( array_key_exists( '@error', $parameters ) ) {
80
+	public function checkError(array $parameters) {
81
+		if (array_key_exists('@error', $parameters)) {
82 82
 			$error = $parameters['@error'];
83
-			if ( array_key_exists( 'toolong', $error ) && $error['toolong'] ) {
83
+			if (array_key_exists('toolong', $error) && $error['toolong']) {
84 84
 				$msg = 'wbqc-violation-message-parameters-error-toolong';
85 85
 			} else {
86 86
 				$msg = 'wbqc-violation-message-parameters-error-unknown';
87 87
 			}
88
-			throw new ConstraintParameterException( wfMessage( $msg )->escaped() );
88
+			throw new ConstraintParameterException(wfMessage($msg)->escaped());
89 89
 		}
90 90
 	}
91 91
 
@@ -95,11 +95,11 @@  discard block
 block discarded – undo
95 95
 	 * @param string $parameterId
96 96
 	 * @throws ConstraintParameterException
97 97
 	 */
98
-	private function requireSingleParameter( array $parameters, $parameterId ) {
99
-		if ( count( $parameters[$parameterId] ) !== 1 ) {
98
+	private function requireSingleParameter(array $parameters, $parameterId) {
99
+		if (count($parameters[$parameterId]) !== 1) {
100 100
 			throw new ConstraintParameterException(
101
-				wfMessage( 'wbqc-violation-message-parameter-single' )
102
-					->rawParams( $this->constraintParameterRenderer->formatPropertyId( $parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
101
+				wfMessage('wbqc-violation-message-parameter-single')
102
+					->rawParams($this->constraintParameterRenderer->formatPropertyId($parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY))
103 103
 					->escaped()
104 104
 			);
105 105
 		}
@@ -112,11 +112,11 @@  discard block
 block discarded – undo
112 112
 	 * @return void
113 113
 	 * @throws ConstraintParameterException
114 114
 	 */
115
-	private function requireValueParameter( Snak $snak, $parameterId ) {
116
-		if ( !( $snak instanceof PropertyValueSnak ) ) {
115
+	private function requireValueParameter(Snak $snak, $parameterId) {
116
+		if (!($snak instanceof PropertyValueSnak)) {
117 117
 			throw new ConstraintParameterException(
118
-				wfMessage( 'wbqc-violation-message-parameter-value' )
119
-					->rawParams( $this->constraintParameterRenderer->formatPropertyId( $parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
118
+				wfMessage('wbqc-violation-message-parameter-value')
119
+					->rawParams($this->constraintParameterRenderer->formatPropertyId($parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY))
120 120
 					->escaped()
121 121
 			);
122 122
 		}
@@ -129,18 +129,18 @@  discard block
 block discarded – undo
129 129
 	 * @throws ConstraintParameterException
130 130
 	 * @return EntityId
131 131
 	 */
132
-	private function parseEntityIdParameter( array $snakSerialization, $parameterId ) {
133
-		$snak = $this->snakDeserializer->deserialize( $snakSerialization );
134
-		$this->requireValueParameter( $snak, $parameterId );
132
+	private function parseEntityIdParameter(array $snakSerialization, $parameterId) {
133
+		$snak = $this->snakDeserializer->deserialize($snakSerialization);
134
+		$this->requireValueParameter($snak, $parameterId);
135 135
 		$value = $snak->getDataValue();
136
-		if ( $value instanceof EntityIdValue ) {
136
+		if ($value instanceof EntityIdValue) {
137 137
 			return $value->getEntityId();
138 138
 		} else {
139 139
 			throw new ConstraintParameterException(
140
-				wfMessage( 'wbqc-violation-message-parameter-entity' )
140
+				wfMessage('wbqc-violation-message-parameter-entity')
141 141
 					->rawParams(
142
-						$this->constraintParameterRenderer->formatPropertyId( $parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY ),
143
-						$this->constraintParameterRenderer->formatDataValue( $value, Role::CONSTRAINT_PARAMETER_VALUE )
142
+						$this->constraintParameterRenderer->formatPropertyId($parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY),
143
+						$this->constraintParameterRenderer->formatDataValue($value, Role::CONSTRAINT_PARAMETER_VALUE)
144 144
 					)
145 145
 					->escaped()
146 146
 			);
@@ -153,21 +153,21 @@  discard block
 block discarded – undo
153 153
 	 * @throws ConstraintParameterException if the parameter is invalid or missing
154 154
 	 * @return string[] class entity ID serializations
155 155
 	 */
156
-	public function parseClassParameter( array $constraintParameters, $constraintTypeItemId ) {
157
-		$this->checkError( $constraintParameters );
158
-		$classId = $this->config->get( 'WBQualityConstraintsClassId' );
159
-		if ( !array_key_exists( $classId, $constraintParameters ) ) {
156
+	public function parseClassParameter(array $constraintParameters, $constraintTypeItemId) {
157
+		$this->checkError($constraintParameters);
158
+		$classId = $this->config->get('WBQualityConstraintsClassId');
159
+		if (!array_key_exists($classId, $constraintParameters)) {
160 160
 			throw new ConstraintParameterException(
161
-				wfMessage( 'wbqc-violation-message-parameter-needed' )
162
-					->rawParams( $this->constraintParameterRenderer->formatItemId( $constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM ) )
163
-					->rawParams( $this->constraintParameterRenderer->formatPropertyId( $classId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
161
+				wfMessage('wbqc-violation-message-parameter-needed')
162
+					->rawParams($this->constraintParameterRenderer->formatItemId($constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM))
163
+					->rawParams($this->constraintParameterRenderer->formatPropertyId($classId, Role::CONSTRAINT_PARAMETER_PROPERTY))
164 164
 					->escaped()
165 165
 			);
166 166
 		}
167 167
 
168 168
 		$classes = [];
169
-		foreach ( $constraintParameters[$classId] as $class ) {
170
-			$classes[] = $this->parseEntityIdParameter( $class, $classId )->getSerialization();
169
+		foreach ($constraintParameters[$classId] as $class) {
170
+			$classes[] = $this->parseEntityIdParameter($class, $classId)->getSerialization();
171 171
 		}
172 172
 		return $classes;
173 173
 	}
@@ -178,24 +178,24 @@  discard block
 block discarded – undo
178 178
 	 * @throws ConstraintParameterException if the parameter is invalid or missing
179 179
 	 * @return string 'instance', 'subclass', or 'instanceOrSubclass'
180 180
 	 */
181
-	public function parseRelationParameter( array $constraintParameters, $constraintTypeItemId ) {
182
-		$this->checkError( $constraintParameters );
183
-		$relationId = $this->config->get( 'WBQualityConstraintsRelationId' );
184
-		if ( !array_key_exists( $relationId, $constraintParameters ) ) {
181
+	public function parseRelationParameter(array $constraintParameters, $constraintTypeItemId) {
182
+		$this->checkError($constraintParameters);
183
+		$relationId = $this->config->get('WBQualityConstraintsRelationId');
184
+		if (!array_key_exists($relationId, $constraintParameters)) {
185 185
 			throw new ConstraintParameterException(
186
-				wfMessage( 'wbqc-violation-message-parameter-needed' )
187
-					->rawParams( $this->constraintParameterRenderer->formatItemId( $constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM ) )
188
-					->rawParams( $this->constraintParameterRenderer->formatPropertyId( $relationId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
186
+				wfMessage('wbqc-violation-message-parameter-needed')
187
+					->rawParams($this->constraintParameterRenderer->formatItemId($constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM))
188
+					->rawParams($this->constraintParameterRenderer->formatPropertyId($relationId, Role::CONSTRAINT_PARAMETER_PROPERTY))
189 189
 					->escaped()
190 190
 			);
191 191
 		}
192 192
 
193
-		$this->requireSingleParameter( $constraintParameters, $relationId );
194
-		$relationEntityId = $this->parseEntityIdParameter( $constraintParameters[$relationId][0], $relationId );
195
-		$instanceId = $this->config->get( 'WBQualityConstraintsInstanceOfRelationId' );
196
-		$subclassId = $this->config->get( 'WBQualityConstraintsSubclassOfRelationId' );
197
-		$instanceOrSubclassId = $this->config->get( 'WBQualityConstraintsInstanceOrSubclassOfRelationId' );
198
-		switch ( $relationEntityId ) {
193
+		$this->requireSingleParameter($constraintParameters, $relationId);
194
+		$relationEntityId = $this->parseEntityIdParameter($constraintParameters[$relationId][0], $relationId);
195
+		$instanceId = $this->config->get('WBQualityConstraintsInstanceOfRelationId');
196
+		$subclassId = $this->config->get('WBQualityConstraintsSubclassOfRelationId');
197
+		$instanceOrSubclassId = $this->config->get('WBQualityConstraintsInstanceOrSubclassOfRelationId');
198
+		switch ($relationEntityId) {
199 199
 			case $instanceId:
200 200
 				return 'instance';
201 201
 			case $subclassId:
@@ -204,13 +204,13 @@  discard block
 block discarded – undo
204 204
 				return 'instanceOrSubclass';
205 205
 			default:
206 206
 				throw new ConstraintParameterException(
207
-					wfMessage( 'wbqc-violation-message-parameter-oneof' )
208
-						->rawParams( $this->constraintParameterRenderer->formatPropertyId( $relationId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
209
-						->numParams( 3 )
210
-						->rawParams( $this->constraintParameterRenderer->formatItemIdList(
211
-							[ $instanceId, $subclassId, $instanceOrSubclassId ],
207
+					wfMessage('wbqc-violation-message-parameter-oneof')
208
+						->rawParams($this->constraintParameterRenderer->formatPropertyId($relationId, Role::CONSTRAINT_PARAMETER_PROPERTY))
209
+						->numParams(3)
210
+						->rawParams($this->constraintParameterRenderer->formatItemIdList(
211
+							[$instanceId, $subclassId, $instanceOrSubclassId],
212 212
 							Role::CONSTRAINT_PARAMETER_VALUE
213
-						) )
213
+						))
214 214
 						->escaped()
215 215
 				);
216 216
 		}
@@ -223,21 +223,21 @@  discard block
 block discarded – undo
223 223
 	 * @throws ConstraintParameterException
224 224
 	 * @return PropertyId
225 225
 	 */
226
-	private function parsePropertyIdParameter( array $snakSerialization, $parameterId ) {
227
-		$snak = $this->snakDeserializer->deserialize( $snakSerialization );
228
-		$this->requireValueParameter( $snak, $parameterId );
226
+	private function parsePropertyIdParameter(array $snakSerialization, $parameterId) {
227
+		$snak = $this->snakDeserializer->deserialize($snakSerialization);
228
+		$this->requireValueParameter($snak, $parameterId);
229 229
 		$value = $snak->getDataValue();
230
-		if ( $value instanceof EntityIdValue ) {
230
+		if ($value instanceof EntityIdValue) {
231 231
 			$id = $value->getEntityId();
232
-			if ( $id instanceof PropertyId ) {
232
+			if ($id instanceof PropertyId) {
233 233
 				return $id;
234 234
 			}
235 235
 		}
236 236
 		throw new ConstraintParameterException(
237
-			wfMessage( 'wbqc-violation-message-parameter-property' )
237
+			wfMessage('wbqc-violation-message-parameter-property')
238 238
 				->rawParams(
239
-					$this->constraintParameterRenderer->formatPropertyId( $parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY ),
240
-					$this->constraintParameterRenderer->formatDataValue( $value, Role::CONSTRAINT_PARAMETER_VALUE )
239
+					$this->constraintParameterRenderer->formatPropertyId($parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY),
240
+					$this->constraintParameterRenderer->formatDataValue($value, Role::CONSTRAINT_PARAMETER_VALUE)
241 241
 				)
242 242
 				->escaped()
243 243
 		);
@@ -250,34 +250,34 @@  discard block
 block discarded – undo
250 250
 	 * @throws ConstraintParameterException if the parameter is invalid or missing
251 251
 	 * @return PropertyId
252 252
 	 */
253
-	public function parsePropertyParameter( array $constraintParameters, $constraintTypeItemId ) {
254
-		$this->checkError( $constraintParameters );
255
-		$propertyId = $this->config->get( 'WBQualityConstraintsPropertyId' );
256
-		if ( !array_key_exists( $propertyId, $constraintParameters ) ) {
253
+	public function parsePropertyParameter(array $constraintParameters, $constraintTypeItemId) {
254
+		$this->checkError($constraintParameters);
255
+		$propertyId = $this->config->get('WBQualityConstraintsPropertyId');
256
+		if (!array_key_exists($propertyId, $constraintParameters)) {
257 257
 			throw new ConstraintParameterException(
258
-				wfMessage( 'wbqc-violation-message-parameter-needed' )
259
-					->rawParams( $this->constraintParameterRenderer->formatItemId( $constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM ) )
260
-					->rawParams( $this->constraintParameterRenderer->formatPropertyId( $propertyId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
258
+				wfMessage('wbqc-violation-message-parameter-needed')
259
+					->rawParams($this->constraintParameterRenderer->formatItemId($constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM))
260
+					->rawParams($this->constraintParameterRenderer->formatPropertyId($propertyId, Role::CONSTRAINT_PARAMETER_PROPERTY))
261 261
 					->escaped()
262 262
 			);
263 263
 		}
264 264
 
265
-		$this->requireSingleParameter( $constraintParameters, $propertyId );
266
-		return $this->parsePropertyIdParameter( $constraintParameters[$propertyId][0], $propertyId );
265
+		$this->requireSingleParameter($constraintParameters, $propertyId);
266
+		return $this->parsePropertyIdParameter($constraintParameters[$propertyId][0], $propertyId);
267 267
 	}
268 268
 
269
-	private function parseItemIdParameter( PropertyValueSnak $snak, $parameterId ) {
269
+	private function parseItemIdParameter(PropertyValueSnak $snak, $parameterId) {
270 270
 		$dataValue = $snak->getDataValue();
271
-		if ( $dataValue instanceof EntityIdValue &&
271
+		if ($dataValue instanceof EntityIdValue &&
272 272
 			$dataValue->getEntityId() instanceof ItemId
273 273
 		) {
274
-			return ItemIdSnakValue::fromItemId( $dataValue->getEntityId() );
274
+			return ItemIdSnakValue::fromItemId($dataValue->getEntityId());
275 275
 		} else {
276 276
 			throw new ConstraintParameterException(
277
-				wfMessage( 'wbqc-violation-message-parameter-item' )
277
+				wfMessage('wbqc-violation-message-parameter-item')
278 278
 					->rawParams(
279
-						$this->constraintParameterRenderer->formatPropertyId( $parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY ),
280
-						$this->constraintParameterRenderer->formatDataValue( $dataValue, Role::CONSTRAINT_PARAMETER_VALUE )
279
+						$this->constraintParameterRenderer->formatPropertyId($parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY),
280
+						$this->constraintParameterRenderer->formatDataValue($dataValue, Role::CONSTRAINT_PARAMETER_VALUE)
281 281
 					)
282 282
 					->escaped()
283 283
 			);
@@ -291,15 +291,15 @@  discard block
 block discarded – undo
291 291
 	 * @throws ConstraintParameterException if the parameter is invalid or missing
292 292
 	 * @return ItemIdSnakValue[] array of values
293 293
 	 */
294
-	public function parseItemsParameter( array $constraintParameters, $constraintTypeItemId, $required ) {
295
-		$this->checkError( $constraintParameters );
296
-		$qualifierId = $this->config->get( 'WBQualityConstraintsQualifierOfPropertyConstraintId' );
297
-		if ( !array_key_exists( $qualifierId, $constraintParameters ) ) {
298
-			if ( $required ) {
294
+	public function parseItemsParameter(array $constraintParameters, $constraintTypeItemId, $required) {
295
+		$this->checkError($constraintParameters);
296
+		$qualifierId = $this->config->get('WBQualityConstraintsQualifierOfPropertyConstraintId');
297
+		if (!array_key_exists($qualifierId, $constraintParameters)) {
298
+			if ($required) {
299 299
 				throw new ConstraintParameterException(
300
-					wfMessage( 'wbqc-violation-message-parameter-needed' )
301
-						->rawParams( $this->constraintParameterRenderer->formatItemId( $constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM ) )
302
-						->rawParams( $this->constraintParameterRenderer->formatPropertyId( $qualifierId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
300
+					wfMessage('wbqc-violation-message-parameter-needed')
301
+						->rawParams($this->constraintParameterRenderer->formatItemId($constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM))
302
+						->rawParams($this->constraintParameterRenderer->formatPropertyId($qualifierId, Role::CONSTRAINT_PARAMETER_PROPERTY))
303 303
 						->escaped()
304 304
 				);
305 305
 			} else {
@@ -308,11 +308,11 @@  discard block
 block discarded – undo
308 308
 		}
309 309
 
310 310
 		$values = [];
311
-		foreach ( $constraintParameters[$qualifierId] as $parameter ) {
312
-			$snak = $this->snakDeserializer->deserialize( $parameter );
313
-			switch ( true ) {
311
+		foreach ($constraintParameters[$qualifierId] as $parameter) {
312
+			$snak = $this->snakDeserializer->deserialize($parameter);
313
+			switch (true) {
314 314
 				case $snak instanceof PropertyValueSnak:
315
-					$values[] = $this->parseItemIdParameter( $snak, $qualifierId );
315
+					$values[] = $this->parseItemIdParameter($snak, $qualifierId);
316 316
 					break;
317 317
 				case $snak instanceof PropertySomeValueSnak:
318 318
 					$values[] = ItemIdSnakValue::someValue();
@@ -331,28 +331,28 @@  discard block
 block discarded – undo
331 331
 	 * @throws ConstraintParameterException if the parameter is invalid or missing
332 332
 	 * @return PropertyId[]
333 333
 	 */
334
-	public function parsePropertiesParameter( array $constraintParameters, $constraintTypeItemId ) {
335
-		$this->checkError( $constraintParameters );
336
-		$propertyId = $this->config->get( 'WBQualityConstraintsPropertyId' );
337
-		if ( !array_key_exists( $propertyId, $constraintParameters ) ) {
334
+	public function parsePropertiesParameter(array $constraintParameters, $constraintTypeItemId) {
335
+		$this->checkError($constraintParameters);
336
+		$propertyId = $this->config->get('WBQualityConstraintsPropertyId');
337
+		if (!array_key_exists($propertyId, $constraintParameters)) {
338 338
 			throw new ConstraintParameterException(
339
-				wfMessage( 'wbqc-violation-message-parameter-needed' )
340
-					->rawParams( $this->constraintParameterRenderer->formatItemId( $constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM ) )
341
-					->rawParams( $this->constraintParameterRenderer->formatPropertyId( $propertyId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
339
+				wfMessage('wbqc-violation-message-parameter-needed')
340
+					->rawParams($this->constraintParameterRenderer->formatItemId($constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM))
341
+					->rawParams($this->constraintParameterRenderer->formatPropertyId($propertyId, Role::CONSTRAINT_PARAMETER_PROPERTY))
342 342
 					->escaped()
343 343
 			);
344 344
 		}
345 345
 
346 346
 		$parameters = $constraintParameters[$propertyId];
347
-		if ( count( $parameters ) === 1 &&
348
-			$this->snakDeserializer->deserialize( $parameters[0] ) instanceof PropertyNoValueSnak
347
+		if (count($parameters) === 1 &&
348
+			$this->snakDeserializer->deserialize($parameters[0]) instanceof PropertyNoValueSnak
349 349
 		) {
350 350
 			return [];
351 351
 		}
352 352
 
353 353
 		$properties = [];
354
-		foreach ( $parameters as $parameter ) {
355
-			$properties[] = $this->parsePropertyIdParameter( $parameter, $propertyId );
354
+		foreach ($parameters as $parameter) {
355
+			$properties[] = $this->parsePropertyIdParameter($parameter, $propertyId);
356 356
 		}
357 357
 		return $properties;
358 358
 	}
@@ -363,16 +363,16 @@  discard block
 block discarded – undo
363 363
 	 * @throws ConstraintParameterException
364 364
 	 * @return DataValue|null
365 365
 	 */
366
-	private function parseValueOrNoValueParameter( array $snakSerialization, $parameterId ) {
367
-		$snak = $this->snakDeserializer->deserialize( $snakSerialization );
368
-		if ( $snak instanceof PropertyValueSnak ) {
366
+	private function parseValueOrNoValueParameter(array $snakSerialization, $parameterId) {
367
+		$snak = $this->snakDeserializer->deserialize($snakSerialization);
368
+		if ($snak instanceof PropertyValueSnak) {
369 369
 			return $snak->getDataValue();
370
-		} elseif ( $snak instanceof PropertyNoValueSnak ) {
370
+		} elseif ($snak instanceof PropertyNoValueSnak) {
371 371
 			return null;
372 372
 		} else {
373 373
 			throw new ConstraintParameterException(
374
-				wfMessage( 'wbqc-violation-message-parameter-value-or-novalue' )
375
-					->rawParams( $this->constraintParameterRenderer->formatPropertyId( $parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
374
+				wfMessage('wbqc-violation-message-parameter-value-or-novalue')
375
+					->rawParams($this->constraintParameterRenderer->formatPropertyId($parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY))
376 376
 					->escaped()
377 377
 			);
378 378
 		}
@@ -383,13 +383,13 @@  discard block
 block discarded – undo
383 383
 	 * @param string $parameterId
384 384
 	 * @return DataValue|null
385 385
 	 */
386
-	private function parseValueOrNoValueOrNowParameter( array $snakSerialization, $parameterId ) {
386
+	private function parseValueOrNoValueOrNowParameter(array $snakSerialization, $parameterId) {
387 387
 		try {
388
-			return $this->parseValueOrNoValueParameter( $snakSerialization, $parameterId );
389
-		} catch ( ConstraintParameterException $e ) {
388
+			return $this->parseValueOrNoValueParameter($snakSerialization, $parameterId);
389
+		} catch (ConstraintParameterException $e) {
390 390
 			// unknown value means “now”
391
-			$timeParser = ( new TimeParserFactory() )->getTimeParser();
392
-			return $timeParser->parse( gmdate( '+Y-m-d\T00:00:00\Z' ) );
391
+			$timeParser = (new TimeParserFactory())->getTimeParser();
392
+			return $timeParser->parse(gmdate('+Y-m-d\T00:00:00\Z'));
393 393
 		}
394 394
 	}
395 395
 
@@ -400,14 +400,14 @@  discard block
 block discarded – undo
400 400
 	 * @param string $unit
401 401
 	 * @return bool
402 402
 	 */
403
-	private function exactlyOneQuantityWithUnit( DataValue $min = null, DataValue $max = null, $unit ) {
404
-		if ( !( $min instanceof UnboundedQuantityValue ) ||
405
-			!( $max instanceof UnboundedQuantityValue )
403
+	private function exactlyOneQuantityWithUnit(DataValue $min = null, DataValue $max = null, $unit) {
404
+		if (!($min instanceof UnboundedQuantityValue) ||
405
+			!($max instanceof UnboundedQuantityValue)
406 406
 		) {
407 407
 			return false;
408 408
 		}
409 409
 
410
-		return ( $min->getUnit() === $unit ) !== ( $max->getUnit() === $unit );
410
+		return ($min->getUnit() === $unit) !== ($max->getUnit() === $unit);
411 411
 	}
412 412
 
413 413
 	/**
@@ -418,9 +418,9 @@  discard block
 block discarded – undo
418 418
 	 * @throws ConstraintParameterException if the parameter is invalid or missing
419 419
 	 * @return DataValue[] a pair of two quantity-type data values, either of which may be null to signify an open range
420 420
 	 */
421
-	public function parseRangeParameter( array $constraintParameters, $constraintTypeItemId, $type ) {
422
-		$this->checkError( $constraintParameters );
423
-		switch ( $type ) {
421
+	public function parseRangeParameter(array $constraintParameters, $constraintTypeItemId, $type) {
422
+		$this->checkError($constraintParameters);
423
+		switch ($type) {
424 424
 			case 'quantity':
425 425
 				$configKey = 'Quantity';
426 426
 				break;
@@ -429,47 +429,47 @@  discard block
 block discarded – undo
429 429
 				break;
430 430
 			default:
431 431
 				throw new ConstraintParameterException(
432
-					wfMessage( 'wbqc-violation-message-value-needed-of-types-2' )
432
+					wfMessage('wbqc-violation-message-value-needed-of-types-2')
433 433
 						->rawParams(
434
-							$this->constraintParameterRenderer->formatItemId( $constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM ),
435
-							wfMessage( 'datatypes-type-quantity' )->escaped(),
436
-							wfMessage( 'datatypes-type-time' )->escaped()
434
+							$this->constraintParameterRenderer->formatItemId($constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM),
435
+							wfMessage('datatypes-type-quantity')->escaped(),
436
+							wfMessage('datatypes-type-time')->escaped()
437 437
 						)
438 438
 						->escaped()
439 439
 				);
440 440
 		}
441
-		$minimumId = $this->config->get( 'WBQualityConstraintsMinimum' . $configKey . 'Id' );
442
-		$maximumId = $this->config->get( 'WBQualityConstraintsMaximum' . $configKey . 'Id' );
443
-		if ( !array_key_exists( $minimumId, $constraintParameters ) ||
444
-			!array_key_exists( $maximumId, $constraintParameters )
441
+		$minimumId = $this->config->get('WBQualityConstraintsMinimum'.$configKey.'Id');
442
+		$maximumId = $this->config->get('WBQualityConstraintsMaximum'.$configKey.'Id');
443
+		if (!array_key_exists($minimumId, $constraintParameters) ||
444
+			!array_key_exists($maximumId, $constraintParameters)
445 445
 		) {
446 446
 			throw new ConstraintParameterException(
447
-				wfMessage( 'wbqc-violation-message-range-parameters-needed' )
447
+				wfMessage('wbqc-violation-message-range-parameters-needed')
448 448
 					->rawParams(
449
-						wfMessage( 'datatypes-type-' . $type )->escaped(),
450
-						$this->constraintParameterRenderer->formatPropertyId( $minimumId, Role::CONSTRAINT_PARAMETER_PROPERTY ),
451
-						$this->constraintParameterRenderer->formatPropertyId( $maximumId, Role::CONSTRAINT_PARAMETER_PROPERTY )
449
+						wfMessage('datatypes-type-'.$type)->escaped(),
450
+						$this->constraintParameterRenderer->formatPropertyId($minimumId, Role::CONSTRAINT_PARAMETER_PROPERTY),
451
+						$this->constraintParameterRenderer->formatPropertyId($maximumId, Role::CONSTRAINT_PARAMETER_PROPERTY)
452 452
 					)
453
-					->rawParams( $this->constraintParameterRenderer->formatItemId( $constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM ) )
453
+					->rawParams($this->constraintParameterRenderer->formatItemId($constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM))
454 454
 					->escaped()
455 455
 			);
456 456
 		}
457 457
 
458
-		$this->requireSingleParameter( $constraintParameters, $minimumId );
459
-		$this->requireSingleParameter( $constraintParameters, $maximumId );
458
+		$this->requireSingleParameter($constraintParameters, $minimumId);
459
+		$this->requireSingleParameter($constraintParameters, $maximumId);
460 460
 		$parseFunction = $configKey === 'Date' ? 'parseValueOrNoValueOrNowParameter' : 'parseValueOrNoValueParameter';
461
-		$min = $this->$parseFunction( $constraintParameters[$minimumId][0], $minimumId );
462
-		$max = $this->$parseFunction( $constraintParameters[$maximumId][0], $maximumId );
461
+		$min = $this->$parseFunction($constraintParameters[$minimumId][0], $minimumId);
462
+		$max = $this->$parseFunction($constraintParameters[$maximumId][0], $maximumId);
463 463
 
464
-		$yearUnit = $this->config->get( 'WBQualityConstraintsYearUnit' );
465
-		if ( $this->exactlyOneQuantityWithUnit( $min, $max, $yearUnit ) ) {
464
+		$yearUnit = $this->config->get('WBQualityConstraintsYearUnit');
465
+		if ($this->exactlyOneQuantityWithUnit($min, $max, $yearUnit)) {
466 466
 			throw new ConstraintParameterException(
467
-				wfMessage( 'wbqc-violation-message-range-parameters-one-year' )
467
+				wfMessage('wbqc-violation-message-range-parameters-one-year')
468 468
 					->escaped()
469 469
 			);
470 470
 		}
471 471
 
472
-		return [ $min, $max ];
472
+		return [$min, $max];
473 473
 	}
474 474
 
475 475
 	/**
@@ -479,18 +479,18 @@  discard block
 block discarded – undo
479 479
 	 * @throws ConstraintParameterException
480 480
 	 * @return string
481 481
 	 */
482
-	private function parseStringParameter( array $snakSerialization, $parameterId ) {
483
-		$snak = $this->snakDeserializer->deserialize( $snakSerialization );
484
-		$this->requireValueParameter( $snak, $parameterId );
482
+	private function parseStringParameter(array $snakSerialization, $parameterId) {
483
+		$snak = $this->snakDeserializer->deserialize($snakSerialization);
484
+		$this->requireValueParameter($snak, $parameterId);
485 485
 		$value = $snak->getDataValue();
486
-		if ( $value instanceof StringValue ) {
486
+		if ($value instanceof StringValue) {
487 487
 			return $value->getValue();
488 488
 		} else {
489 489
 			throw new ConstraintParameterException(
490
-				wfMessage( 'wbqc-violation-message-parameter-string' )
490
+				wfMessage('wbqc-violation-message-parameter-string')
491 491
 					->rawParams(
492
-						$this->constraintParameterRenderer->formatPropertyId( $parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY ),
493
-						$this->constraintParameterRenderer->formatDataValue( $value, Role::CONSTRAINT_PARAMETER_VALUE )
492
+						$this->constraintParameterRenderer->formatPropertyId($parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY),
493
+						$this->constraintParameterRenderer->formatDataValue($value, Role::CONSTRAINT_PARAMETER_VALUE)
494 494
 					)
495 495
 					->escaped()
496 496
 			);
@@ -503,15 +503,15 @@  discard block
 block discarded – undo
503 503
 	 * @throws ConstraintParameterException if the parameter is invalid or missing
504 504
 	 * @return string
505 505
 	 */
506
-	public function parseNamespaceParameter( array $constraintParameters, $constraintTypeItemId ) {
507
-		$this->checkError( $constraintParameters );
508
-		$namespaceId = $this->config->get( 'WBQualityConstraintsNamespaceId' );
509
-		if ( !array_key_exists( $namespaceId, $constraintParameters ) ) {
506
+	public function parseNamespaceParameter(array $constraintParameters, $constraintTypeItemId) {
507
+		$this->checkError($constraintParameters);
508
+		$namespaceId = $this->config->get('WBQualityConstraintsNamespaceId');
509
+		if (!array_key_exists($namespaceId, $constraintParameters)) {
510 510
 			return '';
511 511
 		}
512 512
 
513
-		$this->requireSingleParameter( $constraintParameters, $namespaceId );
514
-		return $this->parseStringParameter( $constraintParameters[$namespaceId][0], $namespaceId );
513
+		$this->requireSingleParameter($constraintParameters, $namespaceId);
514
+		return $this->parseStringParameter($constraintParameters[$namespaceId][0], $namespaceId);
515 515
 	}
516 516
 
517 517
 	/**
@@ -520,20 +520,20 @@  discard block
 block discarded – undo
520 520
 	 * @throws ConstraintParameterException if the parameter is invalid or missing
521 521
 	 * @return string
522 522
 	 */
523
-	public function parseFormatParameter( array $constraintParameters, $constraintTypeItemId ) {
524
-		$this->checkError( $constraintParameters );
525
-		$formatId = $this->config->get( 'WBQualityConstraintsFormatAsARegularExpressionId' );
526
-		if ( !array_key_exists( $formatId, $constraintParameters ) ) {
523
+	public function parseFormatParameter(array $constraintParameters, $constraintTypeItemId) {
524
+		$this->checkError($constraintParameters);
525
+		$formatId = $this->config->get('WBQualityConstraintsFormatAsARegularExpressionId');
526
+		if (!array_key_exists($formatId, $constraintParameters)) {
527 527
 			throw new ConstraintParameterException(
528
-				wfMessage( 'wbqc-violation-message-parameter-needed' )
529
-					->rawParams( $this->constraintParameterRenderer->formatItemId( $constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM ) )
530
-					->rawParams( $this->constraintParameterRenderer->formatPropertyId( $formatId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
528
+				wfMessage('wbqc-violation-message-parameter-needed')
529
+					->rawParams($this->constraintParameterRenderer->formatItemId($constraintTypeItemId, Role::CONSTRAINT_TYPE_ITEM))
530
+					->rawParams($this->constraintParameterRenderer->formatPropertyId($formatId, Role::CONSTRAINT_PARAMETER_PROPERTY))
531 531
 					->escaped()
532 532
 			);
533 533
 		}
534 534
 
535
-		$this->requireSingleParameter( $constraintParameters, $formatId );
536
-		return $this->parseStringParameter( $constraintParameters[$formatId][0], $formatId );
535
+		$this->requireSingleParameter($constraintParameters, $formatId);
536
+		return $this->parseStringParameter($constraintParameters[$formatId][0], $formatId);
537 537
 	}
538 538
 
539 539
 	/**
@@ -541,16 +541,16 @@  discard block
 block discarded – undo
541 541
 	 * @throws ConstraintParameterException if the parameter is invalid
542 542
 	 * @return EntityId[]
543 543
 	 */
544
-	public function parseExceptionParameter( array $constraintParameters ) {
545
-		$this->checkError( $constraintParameters );
546
-		$exceptionId = $this->config->get( 'WBQualityConstraintsExceptionToConstraintId' );
547
-		if ( !array_key_exists( $exceptionId, $constraintParameters ) ) {
544
+	public function parseExceptionParameter(array $constraintParameters) {
545
+		$this->checkError($constraintParameters);
546
+		$exceptionId = $this->config->get('WBQualityConstraintsExceptionToConstraintId');
547
+		if (!array_key_exists($exceptionId, $constraintParameters)) {
548 548
 			return [];
549 549
 		}
550 550
 
551 551
 		return array_map(
552
-			function( $snakSerialization ) use ( $exceptionId ) {
553
-				return $this->parseEntityIdParameter( $snakSerialization, $exceptionId );
552
+			function($snakSerialization) use ($exceptionId) {
553
+				return $this->parseEntityIdParameter($snakSerialization, $exceptionId);
554 554
 			},
555 555
 			$constraintParameters[$exceptionId]
556 556
 		);
@@ -561,27 +561,27 @@  discard block
 block discarded – undo
561 561
 	 * @throws ConstraintParameterException if the parameter is invalid
562 562
 	 * @return string|null 'mandatory' or null
563 563
 	 */
564
-	public function parseConstraintStatusParameter( array $constraintParameters ) {
565
-		$this->checkError( $constraintParameters );
566
-		$constraintStatusId = $this->config->get( 'WBQualityConstraintsConstraintStatusId' );
567
-		if ( !array_key_exists( $constraintStatusId, $constraintParameters ) ) {
564
+	public function parseConstraintStatusParameter(array $constraintParameters) {
565
+		$this->checkError($constraintParameters);
566
+		$constraintStatusId = $this->config->get('WBQualityConstraintsConstraintStatusId');
567
+		if (!array_key_exists($constraintStatusId, $constraintParameters)) {
568 568
 			return null;
569 569
 		}
570 570
 
571
-		$mandatoryId = $this->config->get( 'WBQualityConstraintsMandatoryConstraintId' );
572
-		$this->requireSingleParameter( $constraintParameters, $constraintStatusId );
573
-		$snak = $this->snakDeserializer->deserialize( $constraintParameters[$constraintStatusId][0] );
574
-		$this->requireValueParameter( $snak, $constraintStatusId );
571
+		$mandatoryId = $this->config->get('WBQualityConstraintsMandatoryConstraintId');
572
+		$this->requireSingleParameter($constraintParameters, $constraintStatusId);
573
+		$snak = $this->snakDeserializer->deserialize($constraintParameters[$constraintStatusId][0]);
574
+		$this->requireValueParameter($snak, $constraintStatusId);
575 575
 		$statusId = $snak->getDataValue()->getEntityId()->getSerialization();
576 576
 
577
-		if ( $statusId === $mandatoryId ) {
577
+		if ($statusId === $mandatoryId) {
578 578
 			return 'mandatory';
579 579
 		} else {
580 580
 			throw new ConstraintParameterException(
581
-				wfMessage( 'wbqc-violation-message-parameter-oneof' )
582
-					->rawParams( $this->constraintParameterRenderer->formatPropertyId( $constraintStatusId, Role::CONSTRAINT_PARAMETER_PROPERTY ) )
583
-					->numParams( 1 )
584
-					->rawParams( $this->constraintParameterRenderer->formatItemIdList( [ $mandatoryId ], Role::CONSTRAINT_PARAMETER_VALUE ) )
581
+				wfMessage('wbqc-violation-message-parameter-oneof')
582
+					->rawParams($this->constraintParameterRenderer->formatPropertyId($constraintStatusId, Role::CONSTRAINT_PARAMETER_PROPERTY))
583
+					->numParams(1)
584
+					->rawParams($this->constraintParameterRenderer->formatItemIdList([$mandatoryId], Role::CONSTRAINT_PARAMETER_VALUE))
585 585
 					->escaped()
586 586
 			);
587 587
 		}
@@ -594,13 +594,13 @@  discard block
 block discarded – undo
594 594
 	 * @return void
595 595
 	 * @throws ConstraintParameterException
596 596
 	 */
597
-	private function requireMonolingualTextParameter( DataValue $dataValue, $parameterId ) {
598
-		if ( !( $dataValue instanceof MonolingualTextValue ) ) {
597
+	private function requireMonolingualTextParameter(DataValue $dataValue, $parameterId) {
598
+		if (!($dataValue instanceof MonolingualTextValue)) {
599 599
 			throw new ConstraintParameterException(
600
-				wfMessage( 'wbqc-violation-message-parameter-monolingualtext' )
600
+				wfMessage('wbqc-violation-message-parameter-monolingualtext')
601 601
 					->rawParams(
602
-						$this->constraintParameterRenderer->formatPropertyId( $parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY ),
603
-						$this->constraintParameterRenderer->formatDataValue( $dataValue, Role::CONSTRAINT_PARAMETER_VALUE )
602
+						$this->constraintParameterRenderer->formatPropertyId($parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY),
603
+						$this->constraintParameterRenderer->formatDataValue($dataValue, Role::CONSTRAINT_PARAMETER_VALUE)
604 604
 					)
605 605
 					->escaped()
606 606
 			);
@@ -615,26 +615,26 @@  discard block
 block discarded – undo
615 615
 	 * @throws ConstraintParameterException if invalid snaks are found or a language has multiple texts
616 616
 	 * @return string[]
617 617
 	 */
618
-	private function parseMultilingualTextParameter( array $snakSerializations, $parameterId ) {
618
+	private function parseMultilingualTextParameter(array $snakSerializations, $parameterId) {
619 619
 		$result = [];
620 620
 
621
-		foreach ( $snakSerializations as $snakSerialization ) {
622
-			$snak = $this->snakDeserializer->deserialize( $snakSerialization );
623
-			$this->requireValueParameter( $snak, $parameterId );
621
+		foreach ($snakSerializations as $snakSerialization) {
622
+			$snak = $this->snakDeserializer->deserialize($snakSerialization);
623
+			$this->requireValueParameter($snak, $parameterId);
624 624
 
625 625
 			$value = $snak->getDataValue();
626
-			$this->requireMonolingualTextParameter( $value, $parameterId );
626
+			$this->requireMonolingualTextParameter($value, $parameterId);
627 627
 			/** @var MonolingualTextValue $value */
628 628
 
629 629
 			$code = $value->getLanguageCode();
630
-			if ( array_key_exists( $code, $result ) ) {
630
+			if (array_key_exists($code, $result)) {
631 631
 				throw new ConstraintParameterException(
632
-					wfMessage( 'wbqc-violation-message-parameter-single-per-language' )
632
+					wfMessage('wbqc-violation-message-parameter-single-per-language')
633 633
 						->rawParams(
634
-							$this->constraintParameterRenderer->formatPropertyId( $parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY )
634
+							$this->constraintParameterRenderer->formatPropertyId($parameterId, Role::CONSTRAINT_PARAMETER_PROPERTY)
635 635
 						)
636 636
 						->plaintextParams(
637
-							Language::fetchLanguageName( $code ),
637
+							Language::fetchLanguageName($code),
638 638
 							$code
639 639
 						)
640 640
 						->escaped()
@@ -653,23 +653,23 @@  discard block
 block discarded – undo
653 653
 	 * @throws ConstraintParameterException if the parameter is invalid
654 654
 	 * @return string|null
655 655
 	 */
656
-	public function parseSyntaxClarificationParameter( array $constraintParameters, Language $language ) {
657
-		$syntaxClarificationId = $this->config->get( 'WBQualityConstraintsSyntaxClarificationId' );
656
+	public function parseSyntaxClarificationParameter(array $constraintParameters, Language $language) {
657
+		$syntaxClarificationId = $this->config->get('WBQualityConstraintsSyntaxClarificationId');
658 658
 
659
-		if ( !array_key_exists( $syntaxClarificationId, $constraintParameters ) ) {
659
+		if (!array_key_exists($syntaxClarificationId, $constraintParameters)) {
660 660
 			return null;
661 661
 		}
662 662
 
663 663
 		$languageCodes = $language->getFallbackLanguages();
664
-		array_unshift( $languageCodes, $language->getCode() );
664
+		array_unshift($languageCodes, $language->getCode());
665 665
 
666 666
 		$syntaxClarifications = $this->parseMultilingualTextParameter(
667 667
 			$constraintParameters[$syntaxClarificationId],
668 668
 			$syntaxClarificationId
669 669
 		);
670 670
 
671
-		foreach ( $languageCodes as $languageCode ) {
672
-			if ( array_key_exists( $languageCode, $syntaxClarifications ) ) {
671
+		foreach ($languageCodes as $languageCode) {
672
+			if (array_key_exists($languageCode, $syntaxClarifications)) {
673 673
 				return $syntaxClarifications[$languageCode];
674 674
 			}
675 675
 		}
@@ -685,20 +685,20 @@  discard block
 block discarded – undo
685 685
 	 * @throws ConstraintParameterException if the parameter is invalid
686 686
 	 * @return string[]|null Context::TYPE_* constants
687 687
 	 */
688
-	public function parseConstraintScopeParameter( array $constraintParameters, $constraintTypeItemId, array $validScopes = null ) {
689
-		$constraintScopeId = $this->config->get( 'WBQualityConstraintsConstraintScopeId' );
690
-		$mainSnakId = $this->config->get( 'WBQualityConstraintsConstraintCheckedOnMainValueId' );
691
-		$qualifiersId = $this->config->get( 'WBQualityConstraintsConstraintCheckedOnQualifiersId' );
692
-		$referencesId = $this->config->get( 'WBQualityConstraintsConstraintCheckedOnReferencesId' );
688
+	public function parseConstraintScopeParameter(array $constraintParameters, $constraintTypeItemId, array $validScopes = null) {
689
+		$constraintScopeId = $this->config->get('WBQualityConstraintsConstraintScopeId');
690
+		$mainSnakId = $this->config->get('WBQualityConstraintsConstraintCheckedOnMainValueId');
691
+		$qualifiersId = $this->config->get('WBQualityConstraintsConstraintCheckedOnQualifiersId');
692
+		$referencesId = $this->config->get('WBQualityConstraintsConstraintCheckedOnReferencesId');
693 693
 
694
-		if ( !array_key_exists( $constraintScopeId, $constraintParameters ) ) {
694
+		if (!array_key_exists($constraintScopeId, $constraintParameters)) {
695 695
 			return null;
696 696
 		}
697 697
 
698 698
 		$contextTypes = [];
699
-		foreach ( $constraintParameters[$constraintScopeId] as $snakSerialization ) {
700
-			$scopeEntityId = $this->parseEntityIdParameter( $snakSerialization, $constraintScopeId );
701
-			switch ( $scopeEntityId->getSerialization() ) {
699
+		foreach ($constraintParameters[$constraintScopeId] as $snakSerialization) {
700
+			$scopeEntityId = $this->parseEntityIdParameter($snakSerialization, $constraintScopeId);
701
+			switch ($scopeEntityId->getSerialization()) {
702 702
 				case $mainSnakId:
703 703
 					$contextTypes[] = Context::TYPE_STATEMENT;
704 704
 					break;
@@ -710,14 +710,14 @@  discard block
 block discarded – undo
710 710
 					break;
711 711
 				default:
712 712
 					throw new ConstraintParameterException(
713
-						wfMessage( 'wbqc-violation-message-parameter-oneof' )
713
+						wfMessage('wbqc-violation-message-parameter-oneof')
714 714
 							->rawParams(
715 715
 								$this->constraintParameterRenderer->formatPropertyId(
716 716
 									$constraintScopeId,
717 717
 									Role::CONSTRAINT_PARAMETER_PROPERTY
718 718
 								)
719 719
 							)
720
-							->numParams( 3 )
720
+							->numParams(3)
721 721
 							->rawParams(
722 722
 								$this->constraintParameterRenderer->formatItemIdList(
723 723
 									[
@@ -733,12 +733,12 @@  discard block
 block discarded – undo
733 733
 			}
734 734
 		}
735 735
 
736
-		if ( $validScopes !== null ) {
737
-			$invalidScopes = array_diff( $contextTypes, $validScopes );
738
-			if ( $invalidScopes !== [] ) {
739
-				$invalidScope = array_pop( $invalidScopes );
736
+		if ($validScopes !== null) {
737
+			$invalidScopes = array_diff($contextTypes, $validScopes);
738
+			if ($invalidScopes !== []) {
739
+				$invalidScope = array_pop($invalidScopes);
740 740
 				throw new ConstraintParameterException(
741
-					wfMessage( 'wbqc-violation-message-invalid-scope' )
741
+					wfMessage('wbqc-violation-message-invalid-scope')
742 742
 						->rawParams(
743 743
 							$this->constraintParameterRenderer->formatConstraintScope(
744 744
 								$invalidScope,
@@ -749,7 +749,7 @@  discard block
 block discarded – undo
749 749
 								Role::CONSTRAINT_TYPE_ITEM
750 750
 							)
751 751
 						)
752
-						->numParams( count( $validScopes ) )
752
+						->numParams(count($validScopes))
753 753
 						->rawParams(
754 754
 							$this->constraintParameterRenderer->formatConstraintScopeList(
755 755
 								$validScopes,
Please login to merge, or discard this patch.