Completed
Push — master ( 17657a...f01a3a )
by
unknown
08:59
created
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/Checker/FormatChecker.php 1 patch
Spacing   +30 added lines, -31 removed lines patch added patch discarded remove patch
@@ -93,26 +93,26 @@  discard block
 block discarded – undo
93 93
 	 * @throws ConstraintParameterException
94 94
 	 * @return CheckResult
95 95
 	 */
96
-	public function checkConstraint( Context $context, Constraint $constraint ) {
96
+	public function checkConstraint(Context $context, Constraint $constraint) {
97 97
 		$parameters = [];
98 98
 		$constraintParameters = $constraint->getConstraintParameters();
99 99
 
100
-		$format = $this->constraintParameterParser->parseFormatParameter( $constraintParameters, $constraint->getConstraintTypeItemId() );
101
-		$parameters['pattern'] = [ $format ];
100
+		$format = $this->constraintParameterParser->parseFormatParameter($constraintParameters, $constraint->getConstraintTypeItemId());
101
+		$parameters['pattern'] = [$format];
102 102
 
103 103
 		$syntaxClarification = $this->constraintParameterParser->parseSyntaxClarificationParameter(
104 104
 			$constraintParameters,
105 105
 			WikibaseRepo::getDefaultInstance()->getUserLanguage() // TODO make this part of the Context?
106 106
 		);
107
-		if ( $syntaxClarification !== null ) {
108
-			$parameters['clarification'] = [ $syntaxClarification ];
107
+		if ($syntaxClarification !== null) {
108
+			$parameters['clarification'] = [$syntaxClarification];
109 109
 		}
110 110
 
111 111
 		$snak = $context->getSnak();
112 112
 
113
-		if ( !$snak instanceof PropertyValueSnak ) {
113
+		if (!$snak instanceof PropertyValueSnak) {
114 114
 			// nothing to check
115
-			return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE );
115
+			return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE);
116 116
 		}
117 117
 
118 118
 		$dataValue = $snak->getDataValue();
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 		 * error handling:
122 122
 		 *   type of $dataValue for properties with 'Format' constraint has to be 'string' or 'monolingualtext'
123 123
 		 */
124
-		switch ( $dataValue->getType() ) {
124
+		switch ($dataValue->getType()) {
125 125
 			case 'string':
126 126
 				$text = $dataValue->getValue();
127 127
 				break;
@@ -130,60 +130,59 @@  discard block
 block discarded – undo
130 130
 				$text = $dataValue->getText();
131 131
 				break;
132 132
 			default:
133
-				$message = wfMessage( "wbqc-violation-message-value-needed-of-types-2" )
133
+				$message = wfMessage("wbqc-violation-message-value-needed-of-types-2")
134 134
 						 ->rawParams(
135
-							 $this->constraintParameterRenderer->formatItemId( $constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM ),
136
-							 wfMessage( 'datatypes-type-string' )->escaped(),
137
-							 wfMessage( 'datatypes-type-monolingualtext' )->escaped()
135
+							 $this->constraintParameterRenderer->formatItemId($constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM),
136
+							 wfMessage('datatypes-type-string')->escaped(),
137
+							 wfMessage('datatypes-type-monolingualtext')->escaped()
138 138
 						 )
139 139
 						 ->escaped();
140
-				return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message );
140
+				return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message);
141 141
 		}
142 142
 
143
-		if ( $this->sparqlHelper !== null && $this->config->get( 'WBQualityConstraintsCheckFormatConstraint' ) ) {
144
-			if ( $this->sparqlHelper->matchesRegularExpression( $text, $format ) ) {
143
+		if ($this->sparqlHelper !== null && $this->config->get('WBQualityConstraintsCheckFormatConstraint')) {
144
+			if ($this->sparqlHelper->matchesRegularExpression($text, $format)) {
145 145
 				$message = null;
146 146
 				$status = CheckResult::STATUS_COMPLIANCE;
147 147
 			} else {
148 148
 				$message = wfMessage(
149 149
 					$syntaxClarification !== null ?
150
-						'wbqc-violation-message-format-clarification' :
151
-						'wbqc-violation-message-format'
150
+						'wbqc-violation-message-format-clarification' : 'wbqc-violation-message-format'
152 151
 				)->rawParams(
153
-					$this->constraintParameterRenderer->formatEntityId( $context->getSnak()->getPropertyId(), Role::CONSTRAINT_PROPERTY ),
154
-					$this->constraintParameterRenderer->formatDataValue( new StringValue( $text ), Role::OBJECT ),
155
-					$this->constraintParameterRenderer->formatByRole( Role::CONSTRAINT_PARAMETER_VALUE,
156
-						'<code><nowiki>' . htmlspecialchars( $format ) . '</nowiki></code>' )
152
+					$this->constraintParameterRenderer->formatEntityId($context->getSnak()->getPropertyId(), Role::CONSTRAINT_PROPERTY),
153
+					$this->constraintParameterRenderer->formatDataValue(new StringValue($text), Role::OBJECT),
154
+					$this->constraintParameterRenderer->formatByRole(Role::CONSTRAINT_PARAMETER_VALUE,
155
+						'<code><nowiki>'.htmlspecialchars($format).'</nowiki></code>')
157 156
 				);
158
-				if ( $syntaxClarification !== null ) {
159
-					$message->params( $syntaxClarification );
157
+				if ($syntaxClarification !== null) {
158
+					$message->params($syntaxClarification);
160 159
 				}
161 160
 				$message = $message->escaped();
162 161
 				$status = CheckResult::STATUS_VIOLATION;
163 162
 			}
164 163
 		} else {
165
-			$message = wfMessage( "wbqc-violation-message-security-reason" )
166
-					 ->rawParams( $this->constraintParameterRenderer->formatItemId( $constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM ) )
164
+			$message = wfMessage("wbqc-violation-message-security-reason")
165
+					 ->rawParams($this->constraintParameterRenderer->formatItemId($constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM))
167 166
 					 ->escaped();
168 167
 			$status = CheckResult::STATUS_TODO;
169 168
 		}
170
-		return new CheckResult( $context, $constraint, $parameters, $status, $message );
169
+		return new CheckResult($context, $constraint, $parameters, $status, $message);
171 170
 	}
172 171
 
173
-	public function checkConstraintParameters( Constraint $constraint ) {
172
+	public function checkConstraintParameters(Constraint $constraint) {
174 173
 		$constraintParameters = $constraint->getConstraintParameters();
175 174
 		$exceptions = [];
176 175
 		try {
177
-			$this->constraintParameterParser->parseFormatParameter( $constraintParameters, $constraint->getConstraintTypeItemId() );
178
-		} catch ( ConstraintParameterException $e ) {
176
+			$this->constraintParameterParser->parseFormatParameter($constraintParameters, $constraint->getConstraintTypeItemId());
177
+		} catch (ConstraintParameterException $e) {
179 178
 			$exceptions[] = $e;
180 179
 		}
181 180
 		try {
182 181
 			$this->constraintParameterParser->parseSyntaxClarificationParameter(
183 182
 				$constraintParameters,
184
-				Language::factory( 'en' ) // errors are reported independent of language requested
183
+				Language::factory('en') // errors are reported independent of language requested
185 184
 			);
186
-		} catch ( ConstraintParameterException $e ) {
185
+		} catch (ConstraintParameterException $e) {
187 186
 			$exceptions[] = $e;
188 187
 		}
189 188
 		return $exceptions;
Please login to merge, or discard this patch.