Completed
Push — master ( a083db...976d85 )
by
unknown
02:38 queued 22s
created
src/ConstraintCheck/Cache/CachedBool.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 	 * @param bool $bool
25 25
 	 * @param Metadata $metadata
26 26
 	 */
27
-	public function __construct( $bool, Metadata $metadata ) {
27
+	public function __construct($bool, Metadata $metadata) {
28 28
 		$this->bool = $bool;
29 29
 		$this->metadata = $metadata;
30 30
 	}
Please login to merge, or discard this patch.
src/ConstraintCheck/Cache/Metadata.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -32,14 +32,14 @@  discard block
 block discarded – undo
32 32
 		return $ret;
33 33
 	}
34 34
 
35
-	public static function ofCachingMetadata( CachingMetadata $cachingMetadata ) {
35
+	public static function ofCachingMetadata(CachingMetadata $cachingMetadata) {
36 36
 		$ret = new self;
37 37
 		$ret->cachingMetadata = $cachingMetadata;
38 38
 		$ret->dependencyMetadata = DependencyMetadata::blank();
39 39
 		return $ret;
40 40
 	}
41 41
 
42
-	public static function ofDependencyMetadata( DependencyMetadata $dependencyMetadata ) {
42
+	public static function ofDependencyMetadata(DependencyMetadata $dependencyMetadata) {
43 43
 		$ret = new self;
44 44
 		$ret->cachingMetadata = CachingMetadata::fresh();
45 45
 		$ret->dependencyMetadata = $dependencyMetadata;
@@ -50,17 +50,17 @@  discard block
 block discarded – undo
50 50
 	 * @param self[] $metadatas
51 51
 	 * @return self
52 52
 	 */
53
-	public static function merge( array $metadatas ) {
54
-		Assert::parameterElementType( self::class, $metadatas, '$metadatas' );
53
+	public static function merge(array $metadatas) {
54
+		Assert::parameterElementType(self::class, $metadatas, '$metadatas');
55 55
 		$cachingMetadatas = [];
56 56
 		$dependencyMetadatas = [];
57
-		foreach ( $metadatas as $metadata ) {
57
+		foreach ($metadatas as $metadata) {
58 58
 			$cachingMetadatas[] = $metadata->cachingMetadata;
59 59
 			$dependencyMetadatas[] = $metadata->dependencyMetadata;
60 60
 		}
61 61
 		$ret = new self;
62
-		$ret->cachingMetadata = CachingMetadata::merge( $cachingMetadatas );
63
-		$ret->dependencyMetadata = DependencyMetadata::merge( $dependencyMetadatas );
62
+		$ret->cachingMetadata = CachingMetadata::merge($cachingMetadatas);
63
+		$ret->dependencyMetadata = DependencyMetadata::merge($dependencyMetadatas);
64 64
 		return $ret;
65 65
 	}
66 66
 
Please login to merge, or discard this patch.
src/ConstraintReportFactory.php 1 patch
Spacing   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	public static function getDefaultInstance() {
138 138
 		static $instance = null;
139 139
 
140
-		if ( $instance === null ) {
140
+		if ($instance === null) {
141 141
 			$wikibaseRepo = WikibaseRepo::getDefaultInstance();
142 142
 			$entityIdFormatter = $wikibaseRepo->getEntityIdHtmlLinkFormatterFactory()->getEntityIdFormatter(
143 143
 				$wikibaseRepo->getLanguageFallbackLabelDescriptionLookupFactory()->newLabelDescriptionLookup(
@@ -205,21 +205,21 @@  discard block
 block discarded – undo
205 205
 	 * @return DelegatingConstraintChecker
206 206
 	 */
207 207
 	public function getConstraintChecker() {
208
-		if ( $this->delegatingConstraintChecker === null ) {
208
+		if ($this->delegatingConstraintChecker === null) {
209 209
 			$this->delegatingConstraintChecker = new DelegatingConstraintChecker(
210 210
 				$this->lookup,
211 211
 				$this->getConstraintCheckerMap(),
212
-				new CachingConstraintLookup( $this->getConstraintRepository() ),
212
+				new CachingConstraintLookup($this->getConstraintRepository()),
213 213
 				$this->constraintParameterParser,
214 214
 				$this->statementGuidParser,
215 215
 				new LoggingHelper(
216 216
 					$this->dataFactory,
217
-					LoggerFactory::getInstance( 'WikibaseQualityConstraints' ),
217
+					LoggerFactory::getInstance('WikibaseQualityConstraints'),
218 218
 					$this->config
219 219
 				),
220
-				$this->config->get( 'WBQualityConstraintsCheckQualifiers' ),
221
-				$this->config->get( 'WBQualityConstraintsCheckReferences' ),
222
-				$this->config->get( 'WBQualityConstraintsPropertiesWithViolatingQualifiers' )
220
+				$this->config->get('WBQualityConstraintsCheckQualifiers'),
221
+				$this->config->get('WBQualityConstraintsCheckReferences'),
222
+				$this->config->get('WBQualityConstraintsPropertiesWithViolatingQualifiers')
223 223
 			);
224 224
 		}
225 225
 
@@ -230,10 +230,10 @@  discard block
 block discarded – undo
230 230
 	 * @return ConstraintChecker[]
231 231
 	 */
232 232
 	private function getConstraintCheckerMap() {
233
-		if ( $this->constraintCheckerMap === null ) {
233
+		if ($this->constraintCheckerMap === null) {
234 234
 			$connectionCheckerHelper = new ConnectionCheckerHelper();
235
-			$rangeCheckerHelper = new RangeCheckerHelper( $this->config, $this->unitConverter );
236
-			if ( $this->config->get( 'WBQualityConstraintsSparqlEndpoint' ) !== '' ) {
235
+			$rangeCheckerHelper = new RangeCheckerHelper($this->config, $this->unitConverter);
236
+			if ($this->config->get('WBQualityConstraintsSparqlEndpoint') !== '') {
237 237
 				$sparqlHelper = new SparqlHelper(
238 238
 					$this->config,
239 239
 					$this->rdfVocabulary,
@@ -254,74 +254,74 @@  discard block
 block discarded – undo
254 254
 			);
255 255
 
256 256
 			$this->constraintCheckerMap = [
257
-				$this->config->get( 'WBQualityConstraintsConflictsWithConstraintId' )
257
+				$this->config->get('WBQualityConstraintsConflictsWithConstraintId')
258 258
 					=> new ConflictsWithChecker(
259 259
 						$this->lookup,
260 260
 						$this->constraintParameterParser,
261 261
 						$connectionCheckerHelper,
262 262
 						$this->constraintParameterRenderer
263 263
 					),
264
-				$this->config->get( 'WBQualityConstraintsItemRequiresClaimConstraintId' )
264
+				$this->config->get('WBQualityConstraintsItemRequiresClaimConstraintId')
265 265
 					=> new ItemChecker(
266 266
 						$this->lookup,
267 267
 						$this->constraintParameterParser,
268 268
 						$connectionCheckerHelper,
269 269
 						$this->constraintParameterRenderer
270 270
 					),
271
-				$this->config->get( 'WBQualityConstraintsValueRequiresClaimConstraintId' )
271
+				$this->config->get('WBQualityConstraintsValueRequiresClaimConstraintId')
272 272
 					=> new TargetRequiredClaimChecker(
273 273
 						$this->lookup,
274 274
 						$this->constraintParameterParser,
275 275
 						$connectionCheckerHelper,
276 276
 						$this->constraintParameterRenderer
277 277
 					),
278
-				$this->config->get( 'WBQualityConstraintsSymmetricConstraintId' )
278
+				$this->config->get('WBQualityConstraintsSymmetricConstraintId')
279 279
 					=> new SymmetricChecker(
280 280
 						$this->lookup,
281 281
 						$connectionCheckerHelper,
282 282
 						$this->constraintParameterRenderer
283 283
 					),
284
-				$this->config->get( 'WBQualityConstraintsInverseConstraintId' )
284
+				$this->config->get('WBQualityConstraintsInverseConstraintId')
285 285
 					=> new InverseChecker(
286 286
 						$this->lookup,
287 287
 						$this->constraintParameterParser,
288 288
 						$connectionCheckerHelper,
289 289
 						$this->constraintParameterRenderer
290 290
 					),
291
-				$this->config->get( 'WBQualityConstraintsUsedAsQualifierConstraintId' )
291
+				$this->config->get('WBQualityConstraintsUsedAsQualifierConstraintId')
292 292
 					=> new QualifierChecker(),
293
-				$this->config->get( 'WBQualityConstraintsAllowedQualifiersConstraintId' )
293
+				$this->config->get('WBQualityConstraintsAllowedQualifiersConstraintId')
294 294
 					=> new QualifiersChecker(
295 295
 						$this->constraintParameterParser,
296 296
 						$this->constraintParameterRenderer
297 297
 					),
298
-				$this->config->get( 'WBQualityConstraintsMandatoryQualifierConstraintId' )
298
+				$this->config->get('WBQualityConstraintsMandatoryQualifierConstraintId')
299 299
 					=> new MandatoryQualifiersChecker(
300 300
 						$this->constraintParameterParser,
301 301
 						$this->constraintParameterRenderer
302 302
 					),
303
-				$this->config->get( 'WBQualityConstraintsRangeConstraintId' )
303
+				$this->config->get('WBQualityConstraintsRangeConstraintId')
304 304
 					=> new RangeChecker(
305 305
 						$this->propertyDataTypeLookup,
306 306
 						$this->constraintParameterParser,
307 307
 						$rangeCheckerHelper,
308 308
 						$this->constraintParameterRenderer
309 309
 					),
310
-				$this->config->get( 'WBQualityConstraintsDifferenceWithinRangeConstraintId' )
310
+				$this->config->get('WBQualityConstraintsDifferenceWithinRangeConstraintId')
311 311
 					=> new DiffWithinRangeChecker(
312 312
 						$this->constraintParameterParser,
313 313
 						$rangeCheckerHelper,
314 314
 						$this->constraintParameterRenderer,
315 315
 						$this->config
316 316
 					),
317
-				$this->config->get( 'WBQualityConstraintsTypeConstraintId' )
317
+				$this->config->get('WBQualityConstraintsTypeConstraintId')
318 318
 					=> new TypeChecker(
319 319
 						$this->lookup,
320 320
 						$this->constraintParameterParser,
321 321
 						$typeCheckerHelper,
322 322
 						$this->config
323 323
 					),
324
-				$this->config->get( 'WBQualityConstraintsValueTypeConstraintId' )
324
+				$this->config->get('WBQualityConstraintsValueTypeConstraintId')
325 325
 					=> new ValueTypeChecker(
326 326
 						$this->lookup,
327 327
 						$this->constraintParameterParser,
@@ -329,36 +329,36 @@  discard block
 block discarded – undo
329 329
 						$typeCheckerHelper,
330 330
 						$this->config
331 331
 					),
332
-				$this->config->get( 'WBQualityConstraintsSingleValueConstraintId' )
332
+				$this->config->get('WBQualityConstraintsSingleValueConstraintId')
333 333
 					=> new SingleValueChecker(),
334
-				$this->config->get( 'WBQualityConstraintsMultiValueConstraintId' )
334
+				$this->config->get('WBQualityConstraintsMultiValueConstraintId')
335 335
 					=> new MultiValueChecker(),
336
-				$this->config->get( 'WBQualityConstraintsDistinctValuesConstraintId' )
336
+				$this->config->get('WBQualityConstraintsDistinctValuesConstraintId')
337 337
 					=> new UniqueValueChecker(
338 338
 						$this->constraintParameterRenderer,
339 339
 						$sparqlHelper
340 340
 					),
341
-				$this->config->get( 'WBQualityConstraintsFormatConstraintId' )
341
+				$this->config->get('WBQualityConstraintsFormatConstraintId')
342 342
 					=> new FormatChecker(
343 343
 						$this->constraintParameterParser,
344 344
 						$this->constraintParameterRenderer,
345 345
 						$this->config,
346 346
 						$sparqlHelper
347 347
 					),
348
-				$this->config->get( 'WBQualityConstraintsCommonsLinkConstraintId' )
348
+				$this->config->get('WBQualityConstraintsCommonsLinkConstraintId')
349 349
 					=> new CommonsLinkChecker(
350 350
 						$this->constraintParameterParser,
351 351
 						$this->constraintParameterRenderer,
352 352
 						$this->titleParser
353 353
 					),
354
-				$this->config->get( 'WBQualityConstraintsOneOfConstraintId' )
354
+				$this->config->get('WBQualityConstraintsOneOfConstraintId')
355 355
 					=> new OneOfChecker(
356 356
 						$this->constraintParameterParser,
357 357
 						$this->constraintParameterRenderer
358 358
 					),
359
-				$this->config->get( 'WBQualityConstraintsUsedForValuesOnlyConstraintId' )
359
+				$this->config->get('WBQualityConstraintsUsedForValuesOnlyConstraintId')
360 360
 					=> new ValueOnlyChecker(),
361
-				$this->config->get( 'WBQualityConstraintsUsedAsReferenceConstraintId' )
361
+				$this->config->get('WBQualityConstraintsUsedAsReferenceConstraintId')
362 362
 					=> new ReferenceChecker(),
363 363
 			];
364 364
 		}
@@ -370,26 +370,26 @@  discard block
 block discarded – undo
370 370
 	 * @return array[]
371 371
 	 */
372 372
 	public function getConstraintParameterMap() {
373
-		if ( $this->constraintParameterMap === null ) {
373
+		if ($this->constraintParameterMap === null) {
374 374
 			$this->constraintParameterMap = [
375
-				'Commons link' => [ 'namespace' ],
376
-				'Conflicts with' => [ 'property', 'item' ],
377
-				'Diff within range' => [ 'property', 'minimum_quantity', 'maximum_quantity' ],
378
-				'Format' => [ 'pattern' ],
379
-				'Inverse' => [ 'property' ],
380
-				'Item' => [ 'property', 'item' ],
381
-				'Mandatory qualifiers' => [ 'property' ],
375
+				'Commons link' => ['namespace'],
376
+				'Conflicts with' => ['property', 'item'],
377
+				'Diff within range' => ['property', 'minimum_quantity', 'maximum_quantity'],
378
+				'Format' => ['pattern'],
379
+				'Inverse' => ['property'],
380
+				'Item' => ['property', 'item'],
381
+				'Mandatory qualifiers' => ['property'],
382 382
 				'Multi value' => [],
383
-				'One of' => [ 'item' ],
383
+				'One of' => ['item'],
384 384
 				'Qualifier' => [],
385
-				'Qualifiers' => [ 'property' ],
386
-				'Range' => [ 'minimum_quantity', 'maximum_quantity', 'minimum_date', 'maximum_date' ],
385
+				'Qualifiers' => ['property'],
386
+				'Range' => ['minimum_quantity', 'maximum_quantity', 'minimum_date', 'maximum_date'],
387 387
 				'Single value' => [],
388 388
 				'Symmetric' => [],
389
-				'Target required claim' => [ 'property', 'item' ],
390
-				'Type' => [ 'class', 'relation' ],
389
+				'Target required claim' => ['property', 'item'],
390
+				'Type' => ['class', 'relation'],
391 391
 				'Unique value' => [],
392
-				'Value type' => [ 'class', 'relation' ]
392
+				'Value type' => ['class', 'relation']
393 393
 			];
394 394
 		}
395 395
 
@@ -400,7 +400,7 @@  discard block
 block discarded – undo
400 400
 	 * @return ConstraintRepository
401 401
 	 */
402 402
 	public function getConstraintRepository() {
403
-		if ( $this->constraintRepository === null ) {
403
+		if ($this->constraintRepository === null) {
404 404
 			$this->constraintRepository = new ConstraintRepository();
405 405
 		}
406 406
 
Please login to merge, or discard this patch.
src/Api/CheckConstraintParameters.php 1 patch
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -65,10 +65,10 @@  discard block
 block discarded – undo
65 65
 	 *
66 66
 	 * @return self
67 67
 	 */
68
-	public static function newFromGlobalState( ApiMain $main, $name, $prefix = '' ) {
68
+	public static function newFromGlobalState(ApiMain $main, $name, $prefix = '') {
69 69
 		$constraintReportFactory = ConstraintReportFactory::getDefaultInstance();
70 70
 		$repo = WikibaseRepo::getDefaultInstance();
71
-		$helperFactory = $repo->getApiHelperFactory( RequestContext::getMain() );
71
+		$helperFactory = $repo->getApiHelperFactory(RequestContext::getMain());
72 72
 		return new self(
73 73
 			$main,
74 74
 			$name,
@@ -98,9 +98,9 @@  discard block
 block discarded – undo
98 98
 		StatementGuidParser $statementGuidParser,
99 99
 		IBufferingStatsdDataFactory $dataFactory
100 100
 	) {
101
-		parent::__construct( $main, $name, $prefix );
101
+		parent::__construct($main, $name, $prefix);
102 102
 
103
-		$this->apiErrorReporter = $apiHelperFactory->getErrorReporter( $this );
103
+		$this->apiErrorReporter = $apiHelperFactory->getErrorReporter($this);
104 104
 		$this->delegatingConstraintChecker = $delegatingConstraintChecker;
105 105
 		$this->statementGuidParser = $statementGuidParser;
106 106
 		$this->dataFactory = $dataFactory;
@@ -114,39 +114,39 @@  discard block
 block discarded – undo
114 114
 		$params = $this->extractRequestParams();
115 115
 		$result = $this->getResult();
116 116
 
117
-		$propertyIds = $this->parsePropertyIds( $params[self::PARAM_PROPERTY_ID] );
118
-		$constraintIds = $this->parseConstraintIds( $params[self::PARAM_CONSTRAINT_ID] );
117
+		$propertyIds = $this->parsePropertyIds($params[self::PARAM_PROPERTY_ID]);
118
+		$constraintIds = $this->parseConstraintIds($params[self::PARAM_CONSTRAINT_ID]);
119 119
 
120
-		$this->checkPropertyIds( $propertyIds, $result );
121
-		$this->checkConstraintIds( $constraintIds, $result );
120
+		$this->checkPropertyIds($propertyIds, $result);
121
+		$this->checkConstraintIds($constraintIds, $result);
122 122
 
123
-		$result->addValue( null, 'success', 1 );
123
+		$result->addValue(null, 'success', 1);
124 124
 	}
125 125
 
126 126
 	/**
127 127
 	 * @param array|null $propertyIdSerializations
128 128
 	 * @return PropertyId[]
129 129
 	 */
130
-	private function parsePropertyIds( $propertyIdSerializations ) {
131
-		if ( $propertyIdSerializations === null ) {
130
+	private function parsePropertyIds($propertyIdSerializations) {
131
+		if ($propertyIdSerializations === null) {
132 132
 			return [];
133
-		} elseif ( empty( $propertyIdSerializations ) ) {
133
+		} elseif (empty($propertyIdSerializations)) {
134 134
 			$this->apiErrorReporter->dieError(
135
-				'If ' . self::PARAM_PROPERTY_ID . ' is specified, it must be nonempty.',
135
+				'If '.self::PARAM_PROPERTY_ID.' is specified, it must be nonempty.',
136 136
 				'no-data'
137 137
 			);
138 138
 		}
139 139
 
140 140
 		return array_map(
141
-			function( $propertyIdSerialization ) {
141
+			function($propertyIdSerialization) {
142 142
 				try {
143
-					return new PropertyId( $propertyIdSerialization );
144
-				} catch ( InvalidArgumentException $e ) {
143
+					return new PropertyId($propertyIdSerialization);
144
+				} catch (InvalidArgumentException $e) {
145 145
 					$this->apiErrorReporter->dieError(
146 146
 						"Invalid id: $propertyIdSerialization",
147 147
 						'invalid-property-id',
148 148
 						0, // default argument
149
-						[ self::PARAM_PROPERTY_ID => $propertyIdSerialization ]
149
+						[self::PARAM_PROPERTY_ID => $propertyIdSerialization]
150 150
 					);
151 151
 				}
152 152
 			},
@@ -158,35 +158,35 @@  discard block
 block discarded – undo
158 158
 	 * @param array|null $constraintIds
159 159
 	 * @return string[]
160 160
 	 */
161
-	private function parseConstraintIds( $constraintIds ) {
162
-		if ( $constraintIds === null ) {
161
+	private function parseConstraintIds($constraintIds) {
162
+		if ($constraintIds === null) {
163 163
 			return [];
164
-		} elseif ( empty( $constraintIds ) ) {
164
+		} elseif (empty($constraintIds)) {
165 165
 			$this->apiErrorReporter->dieError(
166
-				'If ' . self::PARAM_CONSTRAINT_ID . ' is specified, it must be nonempty.',
166
+				'If '.self::PARAM_CONSTRAINT_ID.' is specified, it must be nonempty.',
167 167
 				'no-data'
168 168
 			);
169 169
 		}
170 170
 
171 171
 		return array_map(
172
-			function( $constraintId ) {
172
+			function($constraintId) {
173 173
 				try {
174
-					$propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId();
175
-					if ( !$propertyId instanceof PropertyId ) {
174
+					$propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId();
175
+					if (!$propertyId instanceof PropertyId) {
176 176
 						$this->apiErrorReporter->dieError(
177 177
 							"Invalid property ID: {$propertyId->getSerialization()}",
178 178
 							'invalid-property-id',
179 179
 							0, // default argument
180
-							[ self::PARAM_CONSTRAINT_ID => $constraintId ]
180
+							[self::PARAM_CONSTRAINT_ID => $constraintId]
181 181
 						);
182 182
 					}
183 183
 					return $constraintId;
184
-				} catch ( StatementGuidParsingException $e ) {
184
+				} catch (StatementGuidParsingException $e) {
185 185
 					$this->apiErrorReporter->dieError(
186 186
 						"Invalid statement GUID: $constraintId",
187 187
 						'invalid-guid',
188 188
 						0, // default argument
189
-						[ self::PARAM_CONSTRAINT_ID => $constraintId ]
189
+						[self::PARAM_CONSTRAINT_ID => $constraintId]
190 190
 					);
191 191
 				}
192 192
 			},
@@ -198,12 +198,12 @@  discard block
 block discarded – undo
198 198
 	 * @param PropertyId[] $propertyIds
199 199
 	 * @param ApiResult $result
200 200
 	 */
201
-	private function checkPropertyIds( array $propertyIds, ApiResult $result ) {
202
-		foreach ( $propertyIds as $propertyId ) {
203
-			$result->addArrayType( $this->getResultPathForPropertyId( $propertyId ), 'assoc' );
204
-			$allConstraintExceptions = $this->delegatingConstraintChecker->checkConstraintParametersOnPropertyId( $propertyId );
205
-			foreach ( $allConstraintExceptions as $constraintId => $constraintParameterExceptions ) {
206
-				$this->addConstraintParameterExceptionsToResult( $constraintId, $constraintParameterExceptions, $result );
201
+	private function checkPropertyIds(array $propertyIds, ApiResult $result) {
202
+		foreach ($propertyIds as $propertyId) {
203
+			$result->addArrayType($this->getResultPathForPropertyId($propertyId), 'assoc');
204
+			$allConstraintExceptions = $this->delegatingConstraintChecker->checkConstraintParametersOnPropertyId($propertyId);
205
+			foreach ($allConstraintExceptions as $constraintId => $constraintParameterExceptions) {
206
+				$this->addConstraintParameterExceptionsToResult($constraintId, $constraintParameterExceptions, $result);
207 207
 			}
208 208
 		}
209 209
 	}
@@ -212,14 +212,14 @@  discard block
 block discarded – undo
212 212
 	 * @param string[] $constraintIds
213 213
 	 * @param ApiResult $result
214 214
 	 */
215
-	private function checkConstraintIds( array $constraintIds, ApiResult $result ) {
216
-		foreach ( $constraintIds as $constraintId ) {
217
-			if ( $result->getResultData( $this->getResultPathForConstraintId( $constraintId ) ) ) {
215
+	private function checkConstraintIds(array $constraintIds, ApiResult $result) {
216
+		foreach ($constraintIds as $constraintId) {
217
+			if ($result->getResultData($this->getResultPathForConstraintId($constraintId))) {
218 218
 				// already checked as part of checkPropertyIds()
219 219
 				continue;
220 220
 			}
221
-			$constraintParameterExceptions = $this->delegatingConstraintChecker->checkConstraintParametersOnConstraintId( $constraintId );
222
-			$this->addConstraintParameterExceptionsToResult( $constraintId, $constraintParameterExceptions, $result );
221
+			$constraintParameterExceptions = $this->delegatingConstraintChecker->checkConstraintParametersOnConstraintId($constraintId);
222
+			$this->addConstraintParameterExceptionsToResult($constraintId, $constraintParameterExceptions, $result);
223 223
 		}
224 224
 	}
225 225
 
@@ -227,17 +227,17 @@  discard block
 block discarded – undo
227 227
 	 * @param PropertyId $propertyId
228 228
 	 * @return string[]
229 229
 	 */
230
-	private function getResultPathForPropertyId( PropertyId $propertyId ) {
231
-		return [ $this->getModuleName(), $propertyId->getSerialization() ];
230
+	private function getResultPathForPropertyId(PropertyId $propertyId) {
231
+		return [$this->getModuleName(), $propertyId->getSerialization()];
232 232
 	}
233 233
 
234 234
 	/**
235 235
 	 * @param string $constraintId
236 236
 	 * @return string[]
237 237
 	 */
238
-	private function getResultPathForConstraintId( $constraintId ) {
239
-		$propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId();
240
-		return array_merge( $this->getResultPathForPropertyId( $propertyId ), [ $constraintId ] );
238
+	private function getResultPathForConstraintId($constraintId) {
239
+		$propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId();
240
+		return array_merge($this->getResultPathForPropertyId($propertyId), [$constraintId]);
241 241
 	}
242 242
 
243 243
 	/**
@@ -247,9 +247,9 @@  discard block
 block discarded – undo
247 247
 	 * @param ConstraintParameterException[]|null $constraintParameterExceptions
248 248
 	 * @param ApiResult $result
249 249
 	 */
250
-	private function addConstraintParameterExceptionsToResult( $constraintId, $constraintParameterExceptions, ApiResult $result ) {
251
-		$path = $this->getResultPathForConstraintId( $constraintId );
252
-		if ( $constraintParameterExceptions === null ) {
250
+	private function addConstraintParameterExceptionsToResult($constraintId, $constraintParameterExceptions, ApiResult $result) {
251
+		$path = $this->getResultPathForConstraintId($constraintId);
252
+		if ($constraintParameterExceptions === null) {
253 253
 			$result->addValue(
254 254
 				$path,
255 255
 				self::KEY_STATUS,
@@ -259,12 +259,12 @@  discard block
 block discarded – undo
259 259
 			$result->addValue(
260 260
 				$path,
261 261
 				self::KEY_STATUS,
262
-				empty( $constraintParameterExceptions ) ? self::STATUS_OKAY : self::STATUS_NOT_OKAY
262
+				empty($constraintParameterExceptions) ? self::STATUS_OKAY : self::STATUS_NOT_OKAY
263 263
 			);
264 264
 			$result->addValue(
265 265
 				$path,
266 266
 				self::KEY_PROBLEMS,
267
-				array_map( [ $this, 'formatConstraintParameterException' ], $constraintParameterExceptions )
267
+				array_map([$this, 'formatConstraintParameterException'], $constraintParameterExceptions)
268 268
 			);
269 269
 		}
270 270
 	}
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
 	 * @param ConstraintParameterException $e
276 276
 	 * @return array
277 277
 	 */
278
-	private function formatConstraintParameterException( ConstraintParameterException $e ) {
278
+	private function formatConstraintParameterException(ConstraintParameterException $e) {
279 279
 		return [
280 280
 			self::KEY_MESSAGE_HTML => $e->getMessage(),
281 281
 		];
Please login to merge, or discard this patch.
src/ConstraintCheck/Context/Context.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,6 +86,6 @@
 block discarded – undo
86 86
 	 * @param array|null $result
87 87
 	 * @param array[] &$container
88 88
 	 */
89
-	public function storeCheckResultInArray( array $result = null, array &$container );
89
+	public function storeCheckResultInArray(array $result = null, array &$container);
90 90
 
91 91
 }
Please login to merge, or discard this patch.
src/ConstraintCheck/Context/ApiV2Context.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -36,29 +36,29 @@  discard block
 block discarded – undo
36 36
 		$propertyId,
37 37
 		$statementGuid
38 38
 	) {
39
-		if ( !array_key_exists( $entityId, $container ) ) {
39
+		if (!array_key_exists($entityId, $container)) {
40 40
 			$container[$entityId] = [];
41 41
 		}
42 42
 		$entityContainer = &$container[$entityId];
43 43
 
44
-		if ( !array_key_exists( 'claims', $entityContainer ) ) {
44
+		if (!array_key_exists('claims', $entityContainer)) {
45 45
 			$entityContainer['claims'] = [];
46 46
 		}
47 47
 		$claimsContainer = &$entityContainer['claims'];
48 48
 
49
-		if ( !array_key_exists( $propertyId, $claimsContainer ) ) {
49
+		if (!array_key_exists($propertyId, $claimsContainer)) {
50 50
 			$claimsContainer[$propertyId] = [];
51 51
 		}
52 52
 		$propertyContainer = &$claimsContainer[$propertyId];
53 53
 
54
-		foreach ( $propertyContainer as &$statement ) {
55
-			if ( $statement['id'] === $statementGuid ) {
54
+		foreach ($propertyContainer as &$statement) {
55
+			if ($statement['id'] === $statementGuid) {
56 56
 				$statementArray = &$statement;
57 57
 				break;
58 58
 			}
59 59
 		}
60
-		if ( !isset( $statementArray ) ) {
61
-			$statementArray = [ 'id' => $statementGuid ];
60
+		if (!isset($statementArray)) {
61
+			$statementArray = ['id' => $statementGuid];
62 62
 			$propertyContainer[] = &$statementArray;
63 63
 		}
64 64
 
@@ -73,19 +73,19 @@  discard block
 block discarded – undo
73 73
 	 * @param array[] &$container
74 74
 	 * @return array
75 75
 	 */
76
-	abstract protected function &getMainArray( array &$container );
76
+	abstract protected function &getMainArray(array &$container);
77 77
 
78 78
 	/**
79 79
 	 * @param array|null $result
80 80
 	 * @param array[] &$container
81 81
 	 */
82
-	public function storeCheckResultInArray( array $result = null, array &$container ) {
83
-		$mainArray = &$this->getMainArray( $container );
84
-		if ( !array_key_exists( 'results', $mainArray ) ) {
82
+	public function storeCheckResultInArray(array $result = null, array &$container) {
83
+		$mainArray = &$this->getMainArray($container);
84
+		if (!array_key_exists('results', $mainArray)) {
85 85
 			$mainArray['results'] = [];
86 86
 		}
87 87
 
88
-		if ( $result !== null ) {
88
+		if ($result !== null) {
89 89
 			$mainArray['results'][] = $result;
90 90
 		}
91 91
 	}
Please login to merge, or discard this patch.
src/ConstraintCheck/Cache/CachingMetadata.php 1 patch
Spacing   +11 added lines, -12 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
 	 * @param int $maxAge The maximum age of the cached value (in seconds).
30 30
 	 * @return self Indication that a value is possibly outdated by up to this many seconds.
31 31
 	 */
32
-	public static function ofMaximumAgeInSeconds( $maxAge ) {
33
-		Assert::parameterType( 'integer', $maxAge, '$maxAge' );
34
-		Assert::parameter( $maxAge > 0, '$maxAge', '$maxage > 0' );
32
+	public static function ofMaximumAgeInSeconds($maxAge) {
33
+		Assert::parameterType('integer', $maxAge, '$maxAge');
34
+		Assert::parameter($maxAge > 0, '$maxAge', '$maxage > 0');
35 35
 		$ret = new self;
36 36
 		$ret->maxAge = $maxAge;
37 37
 		return $ret;
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
 	 * @param array|null $array As returned by toArray.
43 43
 	 * @return self
44 44
 	 */
45
-	public static function ofArray( array $array = null ) {
45
+	public static function ofArray(array $array = null) {
46 46
 		$ret = new self;
47
-		if ( $array !== null ) {
47
+		if ($array !== null) {
48 48
 			$ret->maxAge = $array['maximumAgeInSeconds'];
49 49
 		}
50 50
 		return $ret;
@@ -54,11 +54,11 @@  discard block
 block discarded – undo
54 54
 	 * @param self[] $metadatas
55 55
 	 * @return self
56 56
 	 */
57
-	public static function merge( array $metadatas ) {
58
-		Assert::parameterElementType( self::class, $metadatas, '$metadatas' );
57
+	public static function merge(array $metadatas) {
58
+		Assert::parameterElementType(self::class, $metadatas, '$metadatas');
59 59
 		$ret = new self;
60
-		foreach ( $metadatas as $metadata ) {
61
-			$ret->maxAge = max( $ret->maxAge, $metadata->maxAge );
60
+		foreach ($metadatas as $metadata) {
61
+			$ret->maxAge = max($ret->maxAge, $metadata->maxAge);
62 62
 		}
63 63
 		return $ret;
64 64
 	}
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	 * For a fresh value, returns 0.
77 77
 	 */
78 78
 	public function getMaximumAgeInSeconds() {
79
-		if ( is_int( $this->maxAge ) ) {
79
+		if (is_int($this->maxAge)) {
80 80
 			return $this->maxAge;
81 81
 		} else {
82 82
 			return 0;
@@ -91,8 +91,7 @@  discard block
 block discarded – undo
91 91
 		return $this->isCached() ?
92 92
 			[
93 93
 				'maximumAgeInSeconds' => $this->maxAge,
94
-			] :
95
-			null;
94
+			] : null;
96 95
 	}
97 96
 
98 97
 }
Please login to merge, or discard this patch.
src/ConstraintParameterRenderer.php 1 patch
Spacing   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -64,20 +64,20 @@  discard block
 block discarded – undo
64 64
 	 *
65 65
 	 * @return string HTML
66 66
 	 */
67
-	public function formatValue( $value ) {
68
-		if ( is_string( $value ) ) {
67
+	public function formatValue($value) {
68
+		if (is_string($value)) {
69 69
 			// Cases like 'Format' 'pattern' or 'minimum'/'maximum' values, which we have stored as
70 70
 			// strings
71
-			return htmlspecialchars( $value );
72
-		} elseif ( $value instanceof EntityId ) {
71
+			return htmlspecialchars($value);
72
+		} elseif ($value instanceof EntityId) {
73 73
 			// Cases like 'Conflicts with' 'property', to which we can link
74
-			return $this->formatEntityId( $value );
75
-		} elseif ( $value instanceof ItemIdSnakValue ) {
74
+			return $this->formatEntityId($value);
75
+		} elseif ($value instanceof ItemIdSnakValue) {
76 76
 			// Cases like EntityId but can also be somevalue or novalue
77
-			return $this->formatItemIdSnakValue( $value );
77
+			return $this->formatItemIdSnakValue($value);
78 78
 		} else {
79 79
 			// Cases where we format a DataValue
80
-			return $this->formatDataValue( $value );
80
+			return $this->formatDataValue($value);
81 81
 		}
82 82
 	}
83 83
 
@@ -88,23 +88,23 @@  discard block
 block discarded – undo
88 88
 	 *
89 89
 	 * @return string HTML
90 90
 	 */
91
-	public function formatParameters( $parameters ) {
92
-		if ( $parameters === null || count( $parameters ) == 0 ) {
91
+	public function formatParameters($parameters) {
92
+		if ($parameters === null || count($parameters) == 0) {
93 93
 			return null;
94 94
 		}
95 95
 
96
-		$valueFormatter = function ( $value ) {
97
-			return $this->formatValue( $value );
96
+		$valueFormatter = function($value) {
97
+			return $this->formatValue($value);
98 98
 		};
99 99
 
100 100
 		$formattedParameters = [];
101
-		foreach ( $parameters as $parameterName => $parameterValue ) {
102
-			$formattedParameterValues = implode( ', ',
103
-				$this->limitArrayLength( array_map( $valueFormatter, $parameterValue ) ) );
104
-			$formattedParameters[] = sprintf( '%s: %s', $parameterName, $formattedParameterValues );
101
+		foreach ($parameters as $parameterName => $parameterValue) {
102
+			$formattedParameterValues = implode(', ',
103
+				$this->limitArrayLength(array_map($valueFormatter, $parameterValue)));
104
+			$formattedParameters[] = sprintf('%s: %s', $parameterName, $formattedParameterValues);
105 105
 		}
106 106
 
107
-		return implode( '; ', $formattedParameters );
107
+		return implode('; ', $formattedParameters);
108 108
 	}
109 109
 
110 110
 	/**
@@ -114,10 +114,10 @@  discard block
 block discarded – undo
114 114
 	 *
115 115
 	 * @return array
116 116
 	 */
117
-	private function limitArrayLength( array $array ) {
118
-		if ( count( $array ) > self::MAX_PARAMETER_ARRAY_LENGTH ) {
119
-			$array = array_slice( $array, 0, self::MAX_PARAMETER_ARRAY_LENGTH );
120
-			array_push( $array, '...' );
117
+	private function limitArrayLength(array $array) {
118
+		if (count($array) > self::MAX_PARAMETER_ARRAY_LENGTH) {
119
+			$array = array_slice($array, 0, self::MAX_PARAMETER_ARRAY_LENGTH);
120
+			array_push($array, '...');
121 121
 		}
122 122
 
123 123
 		return $array;
@@ -130,12 +130,12 @@  discard block
 block discarded – undo
130 130
 	 * @param string $value HTML
131 131
 	 * @return string HTML
132 132
 	 */
133
-	public static function formatByRole( $role, $value ) {
134
-		if ( $role === null ) {
133
+	public static function formatByRole($role, $value) {
134
+		if ($role === null) {
135 135
 			return $value;
136 136
 		}
137 137
 
138
-		return '<span class="wbqc-role wbqc-role-' . htmlspecialchars( $role ) . '">'
138
+		return '<span class="wbqc-role wbqc-role-'.htmlspecialchars($role).'">'
139 139
 			. $value
140 140
 			. '</span>';
141 141
 	}
@@ -145,9 +145,9 @@  discard block
 block discarded – undo
145 145
 	 * @param string|null $role one of the Role constants or null
146 146
 	 * @return string HTML
147 147
 	 */
148
-	public function formatDataValue( DataValue $value, $role = null ) {
149
-		return self::formatByRole( $role,
150
-			$this->dataValueFormatter->format( $value ) );
148
+	public function formatDataValue(DataValue $value, $role = null) {
149
+		return self::formatByRole($role,
150
+			$this->dataValueFormatter->format($value));
151 151
 	}
152 152
 
153 153
 	/**
@@ -155,9 +155,9 @@  discard block
 block discarded – undo
155 155
 	 * @param string|null $role one of the Role constants or null
156 156
 	 * @return string HTML
157 157
 	 */
158
-	public function formatEntityId( EntityId $entityId, $role = null ) {
159
-		return self::formatByRole( $role,
160
-			$this->entityIdLabelFormatter->formatEntityId( $entityId ) );
158
+	public function formatEntityId(EntityId $entityId, $role = null) {
159
+		return self::formatByRole($role,
160
+			$this->entityIdLabelFormatter->formatEntityId($entityId));
161 161
 	}
162 162
 
163 163
 	/**
@@ -169,18 +169,18 @@  discard block
 block discarded – undo
169 169
 	 * @param string|null $role one of the Role constants or null
170 170
 	 * @return string HTML
171 171
 	 */
172
-	public function formatPropertyId( $propertyId, $role = null ) {
173
-		if ( $propertyId instanceof PropertyId ) {
174
-			return $this->formatEntityId( $propertyId, $role );
175
-		} elseif ( is_string( $propertyId ) ) {
172
+	public function formatPropertyId($propertyId, $role = null) {
173
+		if ($propertyId instanceof PropertyId) {
174
+			return $this->formatEntityId($propertyId, $role);
175
+		} elseif (is_string($propertyId)) {
176 176
 			try {
177
-				return $this->formatEntityId( new PropertyId( $propertyId ), $role );
178
-			} catch ( InvalidArgumentException $e ) {
179
-				return self::formatByRole( $role,
180
-					htmlspecialchars( $propertyId ) );
177
+				return $this->formatEntityId(new PropertyId($propertyId), $role);
178
+			} catch (InvalidArgumentException $e) {
179
+				return self::formatByRole($role,
180
+					htmlspecialchars($propertyId));
181 181
 			}
182 182
 		} else {
183
-			throw new InvalidArgumentException( '$propertyId must be either PropertyId or string' );
183
+			throw new InvalidArgumentException('$propertyId must be either PropertyId or string');
184 184
 		}
185 185
 	}
186 186
 
@@ -193,18 +193,18 @@  discard block
 block discarded – undo
193 193
 	 * @param string|null $role one of the Role constants or null
194 194
 	 * @return string HTML
195 195
 	 */
196
-	public function formatItemId( $itemId, $role = null ) {
197
-		if ( $itemId instanceof ItemId ) {
198
-			return $this->formatEntityId( $itemId, $role );
199
-		} elseif ( is_string( $itemId ) ) {
196
+	public function formatItemId($itemId, $role = null) {
197
+		if ($itemId instanceof ItemId) {
198
+			return $this->formatEntityId($itemId, $role);
199
+		} elseif (is_string($itemId)) {
200 200
 			try {
201
-				return $this->formatEntityId( new ItemId( $itemId ), $role );
202
-			} catch ( InvalidArgumentException $e ) {
203
-				return self::formatByRole( $role,
204
-					htmlspecialchars( $itemId ) );
201
+				return $this->formatEntityId(new ItemId($itemId), $role);
202
+			} catch (InvalidArgumentException $e) {
203
+				return self::formatByRole($role,
204
+					htmlspecialchars($itemId));
205 205
 			}
206 206
 		} else {
207
-			throw new InvalidArgumentException( '$itemId must be either ItemId or string' );
207
+			throw new InvalidArgumentException('$itemId must be either ItemId or string');
208 208
 		}
209 209
 	}
210 210
 
@@ -215,20 +215,20 @@  discard block
 block discarded – undo
215 215
 	 * @param string|null $role one of the Role constants or null
216 216
 	 * @return string HTML
217 217
 	 */
218
-	public function formatItemIdSnakValue( ItemIdSnakValue $value, $role = null ) {
219
-		switch ( true ) {
218
+	public function formatItemIdSnakValue(ItemIdSnakValue $value, $role = null) {
219
+		switch (true) {
220 220
 			case $value->isValue():
221
-				return $this->formatEntityId( $value->getItemId(), $role );
221
+				return $this->formatEntityId($value->getItemId(), $role);
222 222
 			case $value->isSomeValue():
223
-				return self::formatByRole( $role,
223
+				return self::formatByRole($role,
224 224
 					'<span class="wikibase-snakview-variation-somevaluesnak">'
225
-						. wfMessage( 'wikibase-snakview-snaktypeselector-somevalue' )->escaped()
226
-						. '</span>' );
225
+						. wfMessage('wikibase-snakview-snaktypeselector-somevalue')->escaped()
226
+						. '</span>');
227 227
 			case $value->isNoValue():
228
-				return self::formatByRole( $role,
228
+				return self::formatByRole($role,
229 229
 					'<span class="wikibase-snakview-variation-novaluesnak">'
230
-						. wfMessage( 'wikibase-snakview-snaktypeselector-novalue' )->escaped()
231
-						. '</span>' );
230
+						. wfMessage('wikibase-snakview-snaktypeselector-novalue')->escaped()
231
+						. '</span>');
232 232
 		}
233 233
 	}
234 234
 
@@ -239,8 +239,8 @@  discard block
 block discarded – undo
239 239
 	 * @param string|null $role one of the Role constants or null
240 240
 	 * @return string HTML
241 241
 	 */
242
-	public function formatConstraintScope( $scope, $role = null ) {
243
-		switch ( $scope ) {
242
+	public function formatConstraintScope($scope, $role = null) {
243
+		switch ($scope) {
244 244
 			case Context::TYPE_STATEMENT:
245 245
 				$itemId = $this->config->get(
246 246
 					'WBQualityConstraintsConstraintCheckedOnMainValueId'
@@ -260,10 +260,10 @@  discard block
 block discarded – undo
260 260
 				// callers should never let this happen, but if it does happen,
261 261
 				// showing “unknown value” seems reasonable
262 262
 				// @codeCoverageIgnoreStart
263
-				return $this->formatItemIdSnakValue( ItemIdSnakValue::someValue(), $role );
263
+				return $this->formatItemIdSnakValue(ItemIdSnakValue::someValue(), $role);
264 264
 				// @codeCoverageIgnoreEnd
265 265
 		}
266
-		return $this->formatItemId( $itemId, $role );
266
+		return $this->formatItemId($itemId, $role);
267 267
 	}
268 268
 
269 269
 	/**
@@ -276,15 +276,15 @@  discard block
 block discarded – undo
276 276
 	 * @param string|null $role one of the Role constants or null
277 277
 	 * @return string[] HTML
278 278
 	 */
279
-	public function formatPropertyIdList( array $propertyIds, $role = null ) {
280
-		if ( empty( $propertyIds ) ) {
281
-			return [ '<ul></ul>' ];
279
+	public function formatPropertyIdList(array $propertyIds, $role = null) {
280
+		if (empty($propertyIds)) {
281
+			return ['<ul></ul>'];
282 282
 		}
283
-		$propertyIds = $this->limitArrayLength( $propertyIds );
284
-		$formattedPropertyIds = array_map( [ $this, "formatPropertyId" ], $propertyIds, array_fill( 0, count( $propertyIds ), $role ) );
283
+		$propertyIds = $this->limitArrayLength($propertyIds);
284
+		$formattedPropertyIds = array_map([$this, "formatPropertyId"], $propertyIds, array_fill(0, count($propertyIds), $role));
285 285
 		array_unshift(
286 286
 			$formattedPropertyIds,
287
-			'<ul><li>' . implode( '</li><li>', $formattedPropertyIds ) . '</li></ul>'
287
+			'<ul><li>'.implode('</li><li>', $formattedPropertyIds).'</li></ul>'
288 288
 		);
289 289
 		return $formattedPropertyIds;
290 290
 	}
@@ -299,15 +299,15 @@  discard block
 block discarded – undo
299 299
 	 * @param string|null $role one of the Role constants or null
300 300
 	 * @return string[] HTML
301 301
 	 */
302
-	public function formatItemIdList( array $itemIds, $role = null ) {
303
-		if ( empty( $itemIds ) ) {
304
-			return [ '<ul></ul>' ];
302
+	public function formatItemIdList(array $itemIds, $role = null) {
303
+		if (empty($itemIds)) {
304
+			return ['<ul></ul>'];
305 305
 		}
306
-		$itemIds = $this->limitArrayLength( $itemIds );
307
-		$formattedItemIds = array_map( [ $this, "formatItemId" ], $itemIds, array_fill( 0, count( $itemIds ), $role ) );
306
+		$itemIds = $this->limitArrayLength($itemIds);
307
+		$formattedItemIds = array_map([$this, "formatItemId"], $itemIds, array_fill(0, count($itemIds), $role));
308 308
 		array_unshift(
309 309
 			$formattedItemIds,
310
-			'<ul><li>' . implode( '</li><li>', $formattedItemIds ) . '</li></ul>'
310
+			'<ul><li>'.implode('</li><li>', $formattedItemIds).'</li></ul>'
311 311
 		);
312 312
 		return $formattedItemIds;
313 313
 	}
@@ -322,23 +322,23 @@  discard block
 block discarded – undo
322 322
 	 * @param string|null $role one of the Role constants or null
323 323
 	 * @return string[] HTML
324 324
 	 */
325
-	public function formatEntityIdList( array $entityIds, $role = null ) {
326
-		if ( empty( $entityIds ) ) {
327
-			return [ '<ul></ul>' ];
325
+	public function formatEntityIdList(array $entityIds, $role = null) {
326
+		if (empty($entityIds)) {
327
+			return ['<ul></ul>'];
328 328
 		}
329 329
 		$formattedEntityIds = [];
330
-		foreach ( $entityIds as $entityId ) {
331
-			if ( count( $formattedEntityIds ) >= self::MAX_PARAMETER_ARRAY_LENGTH ) {
330
+		foreach ($entityIds as $entityId) {
331
+			if (count($formattedEntityIds) >= self::MAX_PARAMETER_ARRAY_LENGTH) {
332 332
 				$formattedEntityIds[] = '...';
333 333
 				break;
334 334
 			}
335
-			if ( $entityId !== null ) {
336
-				$formattedEntityIds[] = $this->formatEntityId( $entityId, $role );
335
+			if ($entityId !== null) {
336
+				$formattedEntityIds[] = $this->formatEntityId($entityId, $role);
337 337
 			}
338 338
 		}
339 339
 		array_unshift(
340 340
 			$formattedEntityIds,
341
-			'<ul><li>' . implode( '</li><li>', $formattedEntityIds ) . '</li></ul>'
341
+			'<ul><li>'.implode('</li><li>', $formattedEntityIds).'</li></ul>'
342 342
 		);
343 343
 		return $formattedEntityIds;
344 344
 	}
@@ -353,24 +353,24 @@  discard block
 block discarded – undo
353 353
 	 * @param string|null $role one of the Role constants or null
354 354
 	 * @return string[] HTML
355 355
 	 */
356
-	public function formatItemIdSnakValueList( array $values, $role = null ) {
357
-		if ( empty( $values ) ) {
358
-			return [ '<ul></ul>' ];
356
+	public function formatItemIdSnakValueList(array $values, $role = null) {
357
+		if (empty($values)) {
358
+			return ['<ul></ul>'];
359 359
 		}
360
-		$values = $this->limitArrayLength( $values );
360
+		$values = $this->limitArrayLength($values);
361 361
 		$formattedValues = array_map(
362
-			function( $value ) use ( $role ) {
363
-				if ( $value === '...' ) {
362
+			function($value) use ($role) {
363
+				if ($value === '...') {
364 364
 					return '...';
365 365
 				} else {
366
-					return $this->formatItemIdSnakValue( $value, $role );
366
+					return $this->formatItemIdSnakValue($value, $role);
367 367
 				}
368 368
 			},
369 369
 			$values
370 370
 		);
371 371
 		array_unshift(
372 372
 			$formattedValues,
373
-			'<ul><li>' . implode( '</li><li>', $formattedValues ) . '</li></ul>'
373
+			'<ul><li>'.implode('</li><li>', $formattedValues).'</li></ul>'
374 374
 		);
375 375
 		return $formattedValues;
376 376
 	}
@@ -385,24 +385,24 @@  discard block
 block discarded – undo
385 385
 	 * @param string|null $role one of the Role constants or null
386 386
 	 * @return string[] HTML
387 387
 	 */
388
-	public function formatConstraintScopeList( array $scopes, $role = null ) {
389
-		if ( empty( $scopes ) ) {
390
-			return [ '<ul></ul>' ];
388
+	public function formatConstraintScopeList(array $scopes, $role = null) {
389
+		if (empty($scopes)) {
390
+			return ['<ul></ul>'];
391 391
 		}
392
-		$scopes = $this->limitArrayLength( $scopes );
392
+		$scopes = $this->limitArrayLength($scopes);
393 393
 		$formattedScopes = array_map(
394
-			function( $scope ) use ( $role ) {
395
-				if ( $scope === '...' ) {
394
+			function($scope) use ($role) {
395
+				if ($scope === '...') {
396 396
 					return '...';
397 397
 				} else {
398
-					return $this->formatConstraintScope( $scope, $role );
398
+					return $this->formatConstraintScope($scope, $role);
399 399
 				}
400 400
 			},
401 401
 			$scopes
402 402
 		);
403 403
 		array_unshift(
404 404
 			$formattedScopes,
405
-			'<ul><li>' . implode( '</li><li>', $formattedScopes ) . '</li></ul>'
405
+			'<ul><li>'.implode('</li><li>', $formattedScopes).'</li></ul>'
406 406
 		);
407 407
 		return $formattedScopes;
408 408
 	}
Please login to merge, or discard this patch.
src/ConstraintCheck/ItemIdSnakValue.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 * @param ItemId $itemId
45 45
 	 * @return self
46 46
 	 */
47
-	public static function fromItemId( ItemId $itemId ) {
47
+	public static function fromItemId(ItemId $itemId) {
48 48
 		$ret = new self;
49 49
 		$ret->itemId = $itemId;
50 50
 		return $ret;
@@ -80,14 +80,14 @@  discard block
 block discarded – undo
80 80
 	 * @throws InvalidArgumentException
81 81
 	 * @return self
82 82
 	 */
83
-	public static function fromSnak( Snak $snak ) {
84
-		switch ( true ) {
83
+	public static function fromSnak(Snak $snak) {
84
+		switch (true) {
85 85
 			case $snak instanceof PropertyValueSnak:
86 86
 				$dataValue = $snak->getDataValue();
87
-				if ( $dataValue instanceof EntityIdValue
87
+				if ($dataValue instanceof EntityIdValue
88 88
 					&& $dataValue->getEntityId() instanceof ItemId
89 89
 				) {
90
-					return self::fromItemId( $dataValue->getEntityId() );
90
+					return self::fromItemId($dataValue->getEntityId());
91 91
 				}
92 92
 				break;
93 93
 			case $snak instanceof PropertySomeValueSnak:
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 				return self::noValue();
97 97
 		}
98 98
 
99
-		throw new InvalidArgumentException( 'Snak must contain item ID value or be a somevalue / novalue snak' );
99
+		throw new InvalidArgumentException('Snak must contain item ID value or be a somevalue / novalue snak');
100 100
 	}
101 101
 
102 102
 	/**
@@ -133,8 +133,8 @@  discard block
 block discarded – undo
133 133
 	 * @return ItemId
134 134
 	 */
135 135
 	public function getItemId() {
136
-		if ( ! $this->isValue() ) {
137
-			throw new DomainException( 'This value does not contain an item ID.' );
136
+		if (!$this->isValue()) {
137
+			throw new DomainException('This value does not contain an item ID.');
138 138
 		}
139 139
 		return $this->itemId;
140 140
 	}
@@ -146,13 +146,13 @@  discard block
 block discarded – undo
146 146
 	 * @param Snak $snak
147 147
 	 * @return bool
148 148
 	 */
149
-	public function matchesSnak( Snak $snak ) {
150
-		switch ( true ) {
149
+	public function matchesSnak(Snak $snak) {
150
+		switch (true) {
151 151
 			case $snak instanceof PropertyValueSnak:
152 152
 				return $this->isValue() &&
153 153
 					$snak->getDataValue() instanceof EntityIdValue &&
154 154
 					$snak->getDataValue()->getEntityId() instanceof ItemId &&
155
-					$snak->getDataValue()->getEntityId()->equals( $this->getItemId() );
155
+					$snak->getDataValue()->getEntityId()->equals($this->getItemId());
156 156
 			case $snak instanceof PropertySomeValueSnak:
157 157
 				return $this->isSomeValue();
158 158
 			case $snak instanceof PropertyNoValueSnak:
Please login to merge, or discard this patch.