@@ -116,11 +116,11 @@ discard block |
||
116 | 116 | ) { |
117 | 117 | $results = []; |
118 | 118 | $metadatas = []; |
119 | - if ( $this->canUseStoredResults( $entityIds, $claimIds, $constraintIds ) ) { |
|
119 | + if ($this->canUseStoredResults($entityIds, $claimIds, $constraintIds)) { |
|
120 | 120 | $storedEntityIds = []; |
121 | - foreach ( $entityIds as $entityId ) { |
|
122 | - $storedResults = $this->getStoredResults( $entityId ); |
|
123 | - if ( $storedResults !== null ) { |
|
121 | + foreach ($entityIds as $entityId) { |
|
122 | + $storedResults = $this->getStoredResults($entityId); |
|
123 | + if ($storedResults !== null) { |
|
124 | 124 | $this->dataFactory->increment( |
125 | 125 | 'wikibase.quality.constraints.cache.entity.hit' |
126 | 126 | ); |
@@ -129,20 +129,20 @@ discard block |
||
129 | 129 | $storedEntityIds[] = $entityId; |
130 | 130 | } |
131 | 131 | } |
132 | - $entityIds = array_values( array_diff( $entityIds, $storedEntityIds ) ); |
|
132 | + $entityIds = array_values(array_diff($entityIds, $storedEntityIds)); |
|
133 | 133 | } |
134 | - if ( $entityIds !== [] || $claimIds !== [] ) { |
|
134 | + if ($entityIds !== [] || $claimIds !== []) { |
|
135 | 135 | $this->dataFactory->updateCount( |
136 | 136 | 'wikibase.quality.constraints.cache.entity.miss', |
137 | - count( $entityIds ) |
|
137 | + count($entityIds) |
|
138 | 138 | ); |
139 | - $response = $this->getAndStoreResults( $entityIds, $claimIds, $constraintIds ); |
|
139 | + $response = $this->getAndStoreResults($entityIds, $claimIds, $constraintIds); |
|
140 | 140 | $results += $response->getArray(); |
141 | 141 | $metadatas[] = $response->getMetadata(); |
142 | 142 | } |
143 | 143 | return new CachedCheckConstraintsResponse( |
144 | 144 | $results, |
145 | - Metadata::merge( $metadatas ) |
|
145 | + Metadata::merge($metadatas) |
|
146 | 146 | ); |
147 | 147 | } |
148 | 148 | |
@@ -175,17 +175,17 @@ discard block |
||
175 | 175 | array $claimIds, |
176 | 176 | array $constraintIds = null |
177 | 177 | ) { |
178 | - $results = $this->resultsBuilder->getResults( $entityIds, $claimIds, $constraintIds ); |
|
178 | + $results = $this->resultsBuilder->getResults($entityIds, $claimIds, $constraintIds); |
|
179 | 179 | |
180 | - if ( $this->canStoreResults( $entityIds, $claimIds, $constraintIds ) ) { |
|
181 | - foreach ( $entityIds as $entityId ) { |
|
180 | + if ($this->canStoreResults($entityIds, $claimIds, $constraintIds)) { |
|
181 | + foreach ($entityIds as $entityId) { |
|
182 | 182 | $value = [ |
183 | 183 | 'results' => $results->getArray()[$entityId->getSerialization()], |
184 | 184 | 'latestRevisionIds' => $this->getLatestRevisionIds( |
185 | 185 | $results->getMetadata()->getDependencyMetadata()->getEntityIds() |
186 | 186 | ), |
187 | 187 | ]; |
188 | - $this->cache->set( $entityId, $value, $this->ttlInSeconds ); |
|
188 | + $this->cache->set($entityId, $value, $this->ttlInSeconds); |
|
189 | 189 | } |
190 | 190 | } |
191 | 191 | |
@@ -218,45 +218,44 @@ discard block |
||
218 | 218 | public function getStoredResults( |
219 | 219 | EntityId $entityId |
220 | 220 | ) { |
221 | - $value = $this->cache->get( $entityId, $curTTL, [], $asOf ); |
|
222 | - $now = call_user_func( $this->microtime, true ); |
|
221 | + $value = $this->cache->get($entityId, $curTTL, [], $asOf); |
|
222 | + $now = call_user_func($this->microtime, true); |
|
223 | 223 | |
224 | - if ( $value === false ) { |
|
224 | + if ($value === false) { |
|
225 | 225 | return null; |
226 | 226 | } |
227 | 227 | |
228 | - $ageInSeconds = (int)ceil( $now - $asOf ); |
|
228 | + $ageInSeconds = (int) ceil($now - $asOf); |
|
229 | 229 | |
230 | 230 | $dependedEntityIds = array_map( |
231 | - [ $this->entityIdParser, "parse" ], |
|
232 | - array_keys( $value['latestRevisionIds'] ) |
|
231 | + [$this->entityIdParser, "parse"], |
|
232 | + array_keys($value['latestRevisionIds']) |
|
233 | 233 | ); |
234 | 234 | |
235 | - if ( $value['latestRevisionIds'] !== $this->getLatestRevisionIds( $dependedEntityIds ) ) { |
|
235 | + if ($value['latestRevisionIds'] !== $this->getLatestRevisionIds($dependedEntityIds)) { |
|
236 | 236 | return null; |
237 | 237 | } |
238 | 238 | |
239 | 239 | $cachingMetadata = $ageInSeconds > 0 ? |
240 | - CachingMetadata::ofMaximumAgeInSeconds( $ageInSeconds ) : |
|
241 | - CachingMetadata::fresh(); |
|
240 | + CachingMetadata::ofMaximumAgeInSeconds($ageInSeconds) : CachingMetadata::fresh(); |
|
242 | 241 | |
243 | - if ( is_array( $value['results'] ) ) { |
|
244 | - array_walk( $value['results'], [ $this, 'updateCachingMetadata' ], $cachingMetadata ); |
|
242 | + if (is_array($value['results'])) { |
|
243 | + array_walk($value['results'], [$this, 'updateCachingMetadata'], $cachingMetadata); |
|
245 | 244 | } |
246 | 245 | |
247 | 246 | return new CachedCheckConstraintsResponse( |
248 | - [ $entityId->getSerialization() => $value['results'] ], |
|
247 | + [$entityId->getSerialization() => $value['results']], |
|
249 | 248 | array_reduce( |
250 | 249 | $dependedEntityIds, |
251 | - function( Metadata $metadata, EntityId $entityId ) { |
|
252 | - return Metadata::merge( [ |
|
250 | + function(Metadata $metadata, EntityId $entityId) { |
|
251 | + return Metadata::merge([ |
|
253 | 252 | $metadata, |
254 | 253 | Metadata::ofDependencyMetadata( |
255 | - DependencyMetadata::ofEntityId( $entityId ) |
|
254 | + DependencyMetadata::ofEntityId($entityId) |
|
256 | 255 | ) |
257 | - ] ); |
|
256 | + ]); |
|
258 | 257 | }, |
259 | - Metadata::ofCachingMetadata( $cachingMetadata ) |
|
258 | + Metadata::ofCachingMetadata($cachingMetadata) |
|
260 | 259 | ) |
261 | 260 | ); |
262 | 261 | } |
@@ -265,39 +264,39 @@ discard block |
||
265 | 264 | * @param EntityId[] $entityIds |
266 | 265 | * @return int[] |
267 | 266 | */ |
268 | - private function getLatestRevisionIds( array $entityIds ) { |
|
267 | + private function getLatestRevisionIds(array $entityIds) { |
|
269 | 268 | $revisionInformations = $this->wikiPageEntityMetaDataAccessor->loadRevisionInformation( |
270 | 269 | $entityIds, |
271 | 270 | EntityRevisionLookup::LATEST_FROM_REPLICA |
272 | 271 | ); |
273 | 272 | $latestRevisionIds = []; |
274 | - foreach ( $revisionInformations as $serialization => $revisionInformation ) { |
|
273 | + foreach ($revisionInformations as $serialization => $revisionInformation) { |
|
275 | 274 | $latestRevisionIds[$serialization] = $revisionInformation->page_latest; |
276 | 275 | } |
277 | 276 | return $latestRevisionIds; |
278 | 277 | } |
279 | 278 | |
280 | - public function updateCachingMetadata( &$element, $key, CachingMetadata $cachingMetadata ) { |
|
281 | - if ( $key === 'cached' ) { |
|
282 | - $element = CachingMetadata::merge( [ |
|
279 | + public function updateCachingMetadata(&$element, $key, CachingMetadata $cachingMetadata) { |
|
280 | + if ($key === 'cached') { |
|
281 | + $element = CachingMetadata::merge([ |
|
283 | 282 | $cachingMetadata, |
284 | - CachingMetadata::ofArray( $element ), |
|
285 | - ] )->toArray(); |
|
283 | + CachingMetadata::ofArray($element), |
|
284 | + ])->toArray(); |
|
286 | 285 | } |
287 | 286 | if ( |
288 | - is_array( $element ) && |
|
289 | - array_key_exists( 'constraint', $element ) && |
|
290 | - in_array( $element['constraint']['type'], $this->possiblyStaleConstraintTypes, true ) |
|
287 | + is_array($element) && |
|
288 | + array_key_exists('constraint', $element) && |
|
289 | + in_array($element['constraint']['type'], $this->possiblyStaleConstraintTypes, true) |
|
291 | 290 | ) { |
292 | - $element['cached'] = CachingMetadata::merge( [ |
|
291 | + $element['cached'] = CachingMetadata::merge([ |
|
293 | 292 | $cachingMetadata, |
294 | 293 | CachingMetadata::ofArray( |
295 | - array_key_exists( 'cached', $element ) ? $element['cached'] : null |
|
294 | + array_key_exists('cached', $element) ? $element['cached'] : null |
|
296 | 295 | ), |
297 | - ] )->toArray(); |
|
296 | + ])->toArray(); |
|
298 | 297 | } |
299 | - if ( is_array( $element ) ) { |
|
300 | - array_walk( $element, [ $this, __FUNCTION__ ], $cachingMetadata ); |
|
298 | + if (is_array($element)) { |
|
299 | + array_walk($element, [$this, __FUNCTION__], $cachingMetadata); |
|
301 | 300 | } |
302 | 301 | } |
303 | 302 | |
@@ -306,7 +305,7 @@ discard block |
||
306 | 305 | * |
307 | 306 | * @param callable $microtime |
308 | 307 | */ |
309 | - public function setMicrotimeFunction( callable $microtime ) { |
|
308 | + public function setMicrotimeFunction(callable $microtime) { |
|
310 | 309 | $this->microtime = $microtime; |
311 | 310 | } |
312 | 311 |
@@ -73,44 +73,43 @@ discard block |
||
73 | 73 | ) { |
74 | 74 | $response = []; |
75 | 75 | $metadatas = []; |
76 | - foreach ( $entityIds as $entityId ) { |
|
76 | + foreach ($entityIds as $entityId) { |
|
77 | 77 | $results = $this->delegatingConstraintChecker->checkAgainstConstraintsOnEntityId( |
78 | 78 | $entityId, |
79 | 79 | $constraintIds, |
80 | - [ $this, 'defaultResults' ] |
|
80 | + [$this, 'defaultResults'] |
|
81 | 81 | ); |
82 | - foreach ( $results as $result ) { |
|
82 | + foreach ($results as $result) { |
|
83 | 83 | $metadatas[] = $result->getMetadata(); |
84 | - $resultArray = $this->checkResultToArray( $result ); |
|
85 | - $result->getContext()->storeCheckResultInArray( $resultArray, $response ); |
|
84 | + $resultArray = $this->checkResultToArray($result); |
|
85 | + $result->getContext()->storeCheckResultInArray($resultArray, $response); |
|
86 | 86 | } |
87 | 87 | } |
88 | - foreach ( $claimIds as $claimId ) { |
|
88 | + foreach ($claimIds as $claimId) { |
|
89 | 89 | $results = $this->delegatingConstraintChecker->checkAgainstConstraintsOnClaimId( |
90 | 90 | $claimId, |
91 | 91 | $constraintIds, |
92 | - [ $this, 'defaultResults' ] |
|
92 | + [$this, 'defaultResults'] |
|
93 | 93 | ); |
94 | - foreach ( $results as $result ) { |
|
94 | + foreach ($results as $result) { |
|
95 | 95 | $metadatas[] = $result->getMetadata(); |
96 | - $resultArray = $this->checkResultToArray( $result ); |
|
97 | - $result->getContext()->storeCheckResultInArray( $resultArray, $response ); |
|
96 | + $resultArray = $this->checkResultToArray($result); |
|
97 | + $result->getContext()->storeCheckResultInArray($resultArray, $response); |
|
98 | 98 | } |
99 | 99 | } |
100 | 100 | return new CachedCheckConstraintsResponse( |
101 | 101 | $response, |
102 | - Metadata::merge( $metadatas ) |
|
102 | + Metadata::merge($metadatas) |
|
103 | 103 | ); |
104 | 104 | } |
105 | 105 | |
106 | - public function defaultResults( Context $context ) { |
|
106 | + public function defaultResults(Context $context) { |
|
107 | 107 | return $context->getType() === Context::TYPE_STATEMENT ? |
108 | - [ new NullResult( $context ) ] : |
|
109 | - []; |
|
108 | + [new NullResult($context)] : []; |
|
110 | 109 | } |
111 | 110 | |
112 | - public function checkResultToArray( CheckResult $checkResult ) { |
|
113 | - if ( $checkResult instanceof NullResult ) { |
|
111 | + public function checkResultToArray(CheckResult $checkResult) { |
|
112 | + if ($checkResult instanceof NullResult) { |
|
114 | 113 | return null; |
115 | 114 | } |
116 | 115 | |
@@ -118,10 +117,10 @@ discard block |
||
118 | 117 | $typeItemId = $checkResult->getConstraint()->getConstraintTypeItemId(); |
119 | 118 | $constraintPropertyId = $checkResult->getContext()->getSnak()->getPropertyId(); |
120 | 119 | |
121 | - $title = $this->entityTitleLookup->getTitleForId( $constraintPropertyId ); |
|
122 | - $typeLabel = $this->entityIdLabelFormatter->formatEntityId( new ItemId( $typeItemId ) ); |
|
120 | + $title = $this->entityTitleLookup->getTitleForId($constraintPropertyId); |
|
121 | + $typeLabel = $this->entityIdLabelFormatter->formatEntityId(new ItemId($typeItemId)); |
|
123 | 122 | // TODO link to the statement when possible (T169224) |
124 | - $link = $title->getFullURL() . '#' . $this->config->get( 'WBQualityConstraintsPropertyConstraintId' ); |
|
123 | + $link = $title->getFullURL().'#'.$this->config->get('WBQualityConstraintsPropertyConstraintId'); |
|
125 | 124 | |
126 | 125 | $constraint = [ |
127 | 126 | 'id' => $constraintId, |
@@ -130,11 +129,11 @@ discard block |
||
130 | 129 | 'link' => $link, |
131 | 130 | 'discussLink' => $title->getTalkPage()->getFullURL(), |
132 | 131 | ]; |
133 | - if ( $this->config->get( 'WBQualityConstraintsIncludeDetailInApi' ) ) { |
|
132 | + if ($this->config->get('WBQualityConstraintsIncludeDetailInApi')) { |
|
134 | 133 | $parameters = $checkResult->getParameters(); |
135 | 134 | $constraint += [ |
136 | 135 | 'detail' => $parameters, |
137 | - 'detailHTML' => $this->constraintParameterRenderer->formatParameters( $parameters ), |
|
136 | + 'detailHTML' => $this->constraintParameterRenderer->formatParameters($parameters), |
|
138 | 137 | ]; |
139 | 138 | } |
140 | 139 | |
@@ -144,14 +143,14 @@ discard block |
||
144 | 143 | 'constraint' => $constraint |
145 | 144 | ]; |
146 | 145 | $message = $checkResult->getMessage(); |
147 | - if ( $message ) { |
|
146 | + if ($message) { |
|
148 | 147 | $result['message-html'] = $message; |
149 | 148 | } |
150 | - if ( $checkResult->getContext()->getType() === Context::TYPE_STATEMENT ) { |
|
149 | + if ($checkResult->getContext()->getType() === Context::TYPE_STATEMENT) { |
|
151 | 150 | $result['claim'] = $checkResult->getContext()->getSnakStatement()->getGuid(); |
152 | 151 | } |
153 | 152 | $cachingMetadataArray = $checkResult->getMetadata()->getCachingMetadata()->toArray(); |
154 | - if ( $cachingMetadataArray !== null ) { |
|
153 | + if ($cachingMetadataArray !== null) { |
|
155 | 154 | $result['cached'] = $cachingMetadataArray; |
156 | 155 | } |
157 | 156 |
@@ -86,6 +86,6 @@ |
||
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 | } |
@@ -36,29 +36,29 @@ discard block |
||
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 |
||
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 | } |
@@ -29,9 +29,9 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
91 | 91 | return $this->isCached() ? |
92 | 92 | [ |
93 | 93 | 'maximumAgeInSeconds' => $this->maxAge, |
94 | - ] : |
|
95 | - null; |
|
94 | + ] : null; |
|
96 | 95 | } |
97 | 96 | |
98 | 97 | } |
@@ -68,9 +68,9 @@ discard block |
||
68 | 68 | * @throws ConstraintParameterException |
69 | 69 | * @return CheckResult |
70 | 70 | */ |
71 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
72 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
73 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED ); |
|
71 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
72 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
73 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | $parameters = []; |
@@ -78,42 +78,42 @@ discard block |
||
78 | 78 | |
79 | 79 | $snak = $context->getSnak(); |
80 | 80 | |
81 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
81 | + if (!$snak instanceof PropertyValueSnak) { |
|
82 | 82 | // nothing to check |
83 | - return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE, '' ); |
|
83 | + return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE, ''); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | $dataValue = $snak->getDataValue(); |
87 | 87 | |
88 | - list( $min, $max ) = $this->constraintParameterParser->parseRangeParameter( |
|
88 | + list($min, $max) = $this->constraintParameterParser->parseRangeParameter( |
|
89 | 89 | $constraintParameters, |
90 | 90 | $constraint->getConstraintTypeItemId(), |
91 | 91 | $dataValue->getType() |
92 | 92 | ); |
93 | 93 | $parameterKey = $dataValue->getType() === 'quantity' ? 'quantity' : 'date'; |
94 | - if ( $min !== null ) { |
|
95 | - $parameters['minimum_' . $parameterKey] = [ $min ]; |
|
94 | + if ($min !== null) { |
|
95 | + $parameters['minimum_'.$parameterKey] = [$min]; |
|
96 | 96 | } |
97 | - if ( $max !== null ) { |
|
98 | - $parameters['maximum_' . $parameterKey] = [ $max ]; |
|
97 | + if ($max !== null) { |
|
98 | + $parameters['maximum_'.$parameterKey] = [$max]; |
|
99 | 99 | } |
100 | 100 | |
101 | - if ( $this->rangeCheckerHelper->getComparison( $min, $dataValue ) > 0 || |
|
102 | - $this->rangeCheckerHelper->getComparison( $dataValue, $max ) > 0 |
|
101 | + if ($this->rangeCheckerHelper->getComparison($min, $dataValue) > 0 || |
|
102 | + $this->rangeCheckerHelper->getComparison($dataValue, $max) > 0 |
|
103 | 103 | ) { |
104 | 104 | // at least one of $min, $max is set at this point, otherwise there could be no violation |
105 | 105 | $type = $dataValue->getType(); |
106 | - $openness = $min !== null ? ( $max !== null ? 'closed' : 'rightopen' ) : 'leftopen'; |
|
107 | - $message = wfMessage( "wbqc-violation-message-range-$type-$openness" ); |
|
106 | + $openness = $min !== null ? ($max !== null ? 'closed' : 'rightopen') : 'leftopen'; |
|
107 | + $message = wfMessage("wbqc-violation-message-range-$type-$openness"); |
|
108 | 108 | $message->rawParams( |
109 | - $this->constraintParameterRenderer->formatEntityId( $context->getSnak()->getPropertyId(), Role::PREDICATE ), |
|
110 | - $this->constraintParameterRenderer->formatDataValue( $dataValue, Role::OBJECT ) |
|
109 | + $this->constraintParameterRenderer->formatEntityId($context->getSnak()->getPropertyId(), Role::PREDICATE), |
|
110 | + $this->constraintParameterRenderer->formatDataValue($dataValue, Role::OBJECT) |
|
111 | 111 | ); |
112 | - if ( $min !== null ) { |
|
113 | - $message->rawParams( $this->constraintParameterRenderer->formatDataValue( $min, Role::OBJECT ) ); |
|
112 | + if ($min !== null) { |
|
113 | + $message->rawParams($this->constraintParameterRenderer->formatDataValue($min, Role::OBJECT)); |
|
114 | 114 | } |
115 | - if ( $max !== null ) { |
|
116 | - $message->rawParams( $this->constraintParameterRenderer->formatDataValue( $max, Role::OBJECT ) ); |
|
115 | + if ($max !== null) { |
|
116 | + $message->rawParams($this->constraintParameterRenderer->formatDataValue($max, Role::OBJECT)); |
|
117 | 117 | } |
118 | 118 | $message = $message->escaped(); |
119 | 119 | $status = CheckResult::STATUS_VIOLATION; |
@@ -122,22 +122,22 @@ discard block |
||
122 | 122 | $status = CheckResult::STATUS_COMPLIANCE; |
123 | 123 | } |
124 | 124 | |
125 | - return new CheckResult( $context, $constraint, $parameters, $status, $message ); |
|
125 | + return new CheckResult($context, $constraint, $parameters, $status, $message); |
|
126 | 126 | } |
127 | 127 | |
128 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
128 | + public function checkConstraintParameters(Constraint $constraint) { |
|
129 | 129 | $constraintParameters = $constraint->getConstraintParameters(); |
130 | 130 | $exceptions = []; |
131 | 131 | try { |
132 | 132 | // we don’t have a data value here, so get the type from the property instead |
133 | 133 | // (the distinction between data type and data value type is irrelevant for 'quantity' and 'time') |
134 | - $type = $this->propertyDataTypeLookup->getDataTypeIdForProperty( $constraint->getPropertyId() ); |
|
134 | + $type = $this->propertyDataTypeLookup->getDataTypeIdForProperty($constraint->getPropertyId()); |
|
135 | 135 | $this->constraintParameterParser->parseRangeParameter( |
136 | 136 | $constraintParameters, |
137 | 137 | $constraint->getConstraintTypeItemId(), |
138 | 138 | $type |
139 | 139 | ); |
140 | - } catch ( ConstraintParameterException $e ) { |
|
140 | + } catch (ConstraintParameterException $e) { |
|
141 | 141 | $exceptions[] = $e; |
142 | 142 | } |
143 | 143 | return $exceptions; |
@@ -60,22 +60,22 @@ discard block |
||
60 | 60 | * @return array first element is the namespace number (default namespace for TitleParser), |
61 | 61 | * second element is a string to prepend to the title before giving it to the TitleParser |
62 | 62 | */ |
63 | - private function getCommonsNamespace( $namespace ) { |
|
63 | + private function getCommonsNamespace($namespace) { |
|
64 | 64 | // for namespace numbers see mediawiki-config repo, wmf-config/InitialiseSettings.php, |
65 | 65 | // 'wgExtraNamespaces' key, 'commonswiki' subkey |
66 | - switch ( $namespace ) { |
|
66 | + switch ($namespace) { |
|
67 | 67 | case '': |
68 | - return [ NS_MAIN, '' ]; |
|
68 | + return [NS_MAIN, '']; |
|
69 | 69 | case 'Creator': |
70 | - return [ 100, '' ]; |
|
70 | + return [100, '']; |
|
71 | 71 | case 'TimedText': |
72 | - return [ 102, '' ]; |
|
72 | + return [102, '']; |
|
73 | 73 | case 'Sequence': |
74 | - return [ 104, '' ]; |
|
74 | + return [104, '']; |
|
75 | 75 | case 'Institution': |
76 | - return [ 106, '' ]; |
|
76 | + return [106, '']; |
|
77 | 77 | default: |
78 | - return [ NS_MAIN, $namespace . ':' ]; |
|
78 | + return [NS_MAIN, $namespace.':']; |
|
79 | 79 | } |
80 | 80 | } |
81 | 81 | |
@@ -88,17 +88,17 @@ discard block |
||
88 | 88 | * @throws ConstraintParameterException |
89 | 89 | * @return CheckResult |
90 | 90 | */ |
91 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
91 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
92 | 92 | $parameters = []; |
93 | 93 | $constraintParameters = $constraint->getConstraintParameters(); |
94 | - $namespace = $this->constraintParameterParser->parseNamespaceParameter( $constraintParameters, $constraint->getConstraintTypeItemId() ); |
|
95 | - $parameters['namespace'] = [ $namespace ]; |
|
94 | + $namespace = $this->constraintParameterParser->parseNamespaceParameter($constraintParameters, $constraint->getConstraintTypeItemId()); |
|
95 | + $parameters['namespace'] = [$namespace]; |
|
96 | 96 | |
97 | 97 | $snak = $context->getSnak(); |
98 | 98 | |
99 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
99 | + if (!$snak instanceof PropertyValueSnak) { |
|
100 | 100 | // nothing to check |
101 | - return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE, '' ); |
|
101 | + return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE, ''); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | $dataValue = $snak->getDataValue(); |
@@ -108,49 +108,49 @@ discard block |
||
108 | 108 | * type of $dataValue for properties with 'Commons link' constraint has to be 'string' |
109 | 109 | * parameter $namespace can be null, works for commons galleries |
110 | 110 | */ |
111 | - if ( $dataValue->getType() !== 'string' ) { |
|
112 | - $message = wfMessage( "wbqc-violation-message-value-needed-of-type" ) |
|
111 | + if ($dataValue->getType() !== 'string') { |
|
112 | + $message = wfMessage("wbqc-violation-message-value-needed-of-type") |
|
113 | 113 | ->rawParams( |
114 | - $this->constraintParameterRenderer->formatItemId( $constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM ), |
|
115 | - wfMessage( 'datatypes-type-string' )->escaped() |
|
114 | + $this->constraintParameterRenderer->formatItemId($constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM), |
|
115 | + wfMessage('datatypes-type-string')->escaped() |
|
116 | 116 | ) |
117 | 117 | ->escaped(); |
118 | - return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message ); |
|
118 | + return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | $commonsLink = $dataValue->getValue(); |
122 | 122 | |
123 | 123 | try { |
124 | - if ( !$this->commonsLinkIsWellFormed( $commonsLink ) ) { |
|
125 | - throw new MalformedTitleException( 'wbqc-violation-message-commons-link-not-well-formed', $commonsLink ); // caught below |
|
124 | + if (!$this->commonsLinkIsWellFormed($commonsLink)) { |
|
125 | + throw new MalformedTitleException('wbqc-violation-message-commons-link-not-well-formed', $commonsLink); // caught below |
|
126 | 126 | } |
127 | - list ( $defaultNamespace, $prefix ) = $this->getCommonsNamespace( $namespace ); |
|
128 | - $title = $this->titleParser->parseTitle( $prefix . $commonsLink, $defaultNamespace ); |
|
129 | - if ( $this->pageExists( $title ) ) { |
|
127 | + list ($defaultNamespace, $prefix) = $this->getCommonsNamespace($namespace); |
|
128 | + $title = $this->titleParser->parseTitle($prefix.$commonsLink, $defaultNamespace); |
|
129 | + if ($this->pageExists($title)) { |
|
130 | 130 | $message = ''; |
131 | 131 | $status = CheckResult::STATUS_COMPLIANCE; |
132 | 132 | } else { |
133 | - if ( $this->valueIncludesNamespace( $commonsLink, $namespace ) ) { |
|
134 | - throw new MalformedTitleException( 'wbqc-violation-message-commons-link-not-well-formed', $commonsLink ); // caught below |
|
133 | + if ($this->valueIncludesNamespace($commonsLink, $namespace)) { |
|
134 | + throw new MalformedTitleException('wbqc-violation-message-commons-link-not-well-formed', $commonsLink); // caught below |
|
135 | 135 | } else { |
136 | - $message = wfMessage( "wbqc-violation-message-commons-link-no-existent" )->escaped(); |
|
136 | + $message = wfMessage("wbqc-violation-message-commons-link-no-existent")->escaped(); |
|
137 | 137 | $status = CheckResult::STATUS_VIOLATION; |
138 | 138 | } |
139 | 139 | } |
140 | - } catch ( MalformedTitleException $e ) { |
|
141 | - $message = wfMessage( "wbqc-violation-message-commons-link-not-well-formed" )->escaped(); |
|
140 | + } catch (MalformedTitleException $e) { |
|
141 | + $message = wfMessage("wbqc-violation-message-commons-link-not-well-formed")->escaped(); |
|
142 | 142 | $status = CheckResult::STATUS_VIOLATION; |
143 | 143 | } |
144 | 144 | |
145 | - return new CheckResult( $context, $constraint, $parameters, $status, $message ); |
|
145 | + return new CheckResult($context, $constraint, $parameters, $status, $message); |
|
146 | 146 | } |
147 | 147 | |
148 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
148 | + public function checkConstraintParameters(Constraint $constraint) { |
|
149 | 149 | $constraintParameters = $constraint->getConstraintParameters(); |
150 | 150 | $exceptions = []; |
151 | 151 | try { |
152 | - $this->constraintParameterParser->parseNamespaceParameter( $constraintParameters, $constraint->getConstraintTypeItemId() ); |
|
153 | - } catch ( ConstraintParameterException $e ) { |
|
152 | + $this->constraintParameterParser->parseNamespaceParameter($constraintParameters, $constraint->getConstraintTypeItemId()); |
|
153 | + } catch (ConstraintParameterException $e) { |
|
154 | 154 | $exceptions[] = $e; |
155 | 155 | } |
156 | 156 | return $exceptions; |
@@ -161,19 +161,19 @@ discard block |
||
161 | 161 | * |
162 | 162 | * @return bool |
163 | 163 | */ |
164 | - private function pageExists( TitleValue $title ) { |
|
164 | + private function pageExists(TitleValue $title) { |
|
165 | 165 | $commonsWikiId = 'commonswiki'; |
166 | - if ( defined( 'MW_PHPUNIT_TEST' ) ) { |
|
166 | + if (defined('MW_PHPUNIT_TEST')) { |
|
167 | 167 | $commonsWikiId = false; |
168 | 168 | } |
169 | 169 | |
170 | - $dbLoadBalancer = wfGetLB( $commonsWikiId ); |
|
170 | + $dbLoadBalancer = wfGetLB($commonsWikiId); |
|
171 | 171 | $dbConnection = $dbLoadBalancer->getConnection( |
172 | 172 | DB_REPLICA, false, $commonsWikiId ); |
173 | - $row = $dbConnection->selectRow( 'page', '*', [ |
|
173 | + $row = $dbConnection->selectRow('page', '*', [ |
|
174 | 174 | 'page_title' => $title->getDBkey(), |
175 | 175 | 'page_namespace' => $title->getNamespace() |
176 | - ] ); |
|
176 | + ]); |
|
177 | 177 | |
178 | 178 | return $row !== false; |
179 | 179 | } |
@@ -183,9 +183,9 @@ discard block |
||
183 | 183 | * |
184 | 184 | * @return bool |
185 | 185 | */ |
186 | - private function commonsLinkIsWellFormed( $commonsLink ) { |
|
187 | - $toReplace = [ "_", "%20" ]; |
|
188 | - $compareString = trim( str_replace( $toReplace, '', $commonsLink ) ); |
|
186 | + private function commonsLinkIsWellFormed($commonsLink) { |
|
187 | + $toReplace = ["_", "%20"]; |
|
188 | + $compareString = trim(str_replace($toReplace, '', $commonsLink)); |
|
189 | 189 | return $commonsLink === $compareString; |
190 | 190 | } |
191 | 191 | |
@@ -198,9 +198,9 @@ discard block |
||
198 | 198 | * |
199 | 199 | * @return bool |
200 | 200 | */ |
201 | - private function valueIncludesNamespace( $value, $namespace ) { |
|
201 | + private function valueIncludesNamespace($value, $namespace) { |
|
202 | 202 | return $namespace !== '' && |
203 | - strncasecmp( $value, $namespace . ':', strlen( $namespace ) + 1 ) === 0; |
|
203 | + strncasecmp($value, $namespace.':', strlen($namespace) + 1) === 0; |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | } |
@@ -49,43 +49,43 @@ |
||
49 | 49 | * @throws ConstraintParameterException |
50 | 50 | * @return CheckResult |
51 | 51 | */ |
52 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
53 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
54 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED ); |
|
52 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
53 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
54 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | $parameters = []; |
58 | 58 | $constraintParameters = $constraint->getConstraintParameters(); |
59 | 59 | |
60 | - $items = $this->constraintParameterParser->parseItemsParameter( $constraintParameters, $constraint->getConstraintTypeItemId(), true ); |
|
60 | + $items = $this->constraintParameterParser->parseItemsParameter($constraintParameters, $constraint->getConstraintTypeItemId(), true); |
|
61 | 61 | $parameters['item'] = $items; |
62 | 62 | |
63 | 63 | $snak = $context->getSnak(); |
64 | 64 | |
65 | - $message = wfMessage( 'wbqc-violation-message-one-of' ); |
|
66 | - $message->rawParams( $this->constraintParameterRenderer->formatEntityId( $context->getSnak()->getPropertyId(), Role::PREDICATE ) ); |
|
67 | - $message->numParams( count( $items ) ); |
|
68 | - $message->rawParams( $this->constraintParameterRenderer->formatItemIdSnakValueList( $items, Role::OBJECT ) ); |
|
65 | + $message = wfMessage('wbqc-violation-message-one-of'); |
|
66 | + $message->rawParams($this->constraintParameterRenderer->formatEntityId($context->getSnak()->getPropertyId(), Role::PREDICATE)); |
|
67 | + $message->numParams(count($items)); |
|
68 | + $message->rawParams($this->constraintParameterRenderer->formatItemIdSnakValueList($items, Role::OBJECT)); |
|
69 | 69 | $message = $message->escaped(); |
70 | 70 | $status = CheckResult::STATUS_VIOLATION; |
71 | 71 | |
72 | - foreach ( $items as $item ) { |
|
73 | - if ( $item->matchesSnak( $snak ) ) { |
|
72 | + foreach ($items as $item) { |
|
73 | + if ($item->matchesSnak($snak)) { |
|
74 | 74 | $message = ''; |
75 | 75 | $status = CheckResult::STATUS_COMPLIANCE; |
76 | 76 | break; |
77 | 77 | } |
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 | $constraintParameters = $constraint->getConstraintParameters(); |
85 | 85 | $exceptions = []; |
86 | 86 | try { |
87 | - $this->constraintParameterParser->parseItemsParameter( $constraintParameters, $constraint->getConstraintTypeItemId(), true ); |
|
88 | - } catch ( ConstraintParameterException $e ) { |
|
87 | + $this->constraintParameterParser->parseItemsParameter($constraintParameters, $constraint->getConstraintTypeItemId(), true); |
|
88 | + } catch (ConstraintParameterException $e) { |
|
89 | 89 | $exceptions[] = $e; |
90 | 90 | } |
91 | 91 | return $exceptions; |
@@ -71,25 +71,25 @@ discard block |
||
71 | 71 | * @throws ConstraintParameterException |
72 | 72 | * @return CheckResult |
73 | 73 | */ |
74 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
75 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
76 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED ); |
|
74 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
75 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
76 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | $parameters = []; |
80 | 80 | $constraintParameters = $constraint->getConstraintParameters(); |
81 | 81 | |
82 | - $propertyId = $this->constraintParameterParser->parsePropertyParameter( $constraintParameters, $constraint->getConstraintTypeItemId() ); |
|
83 | - $parameters['property'] = [ $propertyId ]; |
|
82 | + $propertyId = $this->constraintParameterParser->parsePropertyParameter($constraintParameters, $constraint->getConstraintTypeItemId()); |
|
83 | + $parameters['property'] = [$propertyId]; |
|
84 | 84 | |
85 | - $items = $this->constraintParameterParser->parseItemsParameter( $constraintParameters, $constraint->getConstraintTypeItemId(), false ); |
|
85 | + $items = $this->constraintParameterParser->parseItemsParameter($constraintParameters, $constraint->getConstraintTypeItemId(), false); |
|
86 | 86 | $parameters['items'] = $items; |
87 | 87 | |
88 | 88 | $snak = $context->getSnak(); |
89 | 89 | |
90 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
90 | + if (!$snak instanceof PropertyValueSnak) { |
|
91 | 91 | // nothing to check |
92 | - return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE, '' ); |
|
92 | + return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE, ''); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | $dataValue = $snak->getDataValue(); |
@@ -98,22 +98,22 @@ discard block |
||
98 | 98 | * error handling: |
99 | 99 | * type of $dataValue for properties with 'Target required claim' constraint has to be 'wikibase-entityid' |
100 | 100 | */ |
101 | - if ( $dataValue->getType() !== 'wikibase-entityid' ) { |
|
102 | - $message = wfMessage( "wbqc-violation-message-value-needed-of-type" ) |
|
101 | + if ($dataValue->getType() !== 'wikibase-entityid') { |
|
102 | + $message = wfMessage("wbqc-violation-message-value-needed-of-type") |
|
103 | 103 | ->rawParams( |
104 | - $this->constraintParameterRenderer->formatItemId( $constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM ), |
|
104 | + $this->constraintParameterRenderer->formatItemId($constraint->getConstraintTypeItemId(), Role::CONSTRAINT_TYPE_ITEM), |
|
105 | 105 | 'wikibase-entityid' // TODO is there a message for this type so we can localize it? |
106 | 106 | ) |
107 | 107 | ->escaped(); |
108 | - return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message ); |
|
108 | + return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message); |
|
109 | 109 | } |
110 | 110 | /** @var EntityIdValue $dataValue */ |
111 | 111 | |
112 | 112 | $targetEntityId = $dataValue->getEntityId(); |
113 | - $targetEntity = $this->entityLookup->getEntity( $targetEntityId ); |
|
114 | - if ( $targetEntity === null ) { |
|
115 | - $message = wfMessage( "wbqc-violation-message-target-entity-must-exist" )->escaped(); |
|
116 | - return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message ); |
|
113 | + $targetEntity = $this->entityLookup->getEntity($targetEntityId); |
|
114 | + if ($targetEntity === null) { |
|
115 | + $message = wfMessage("wbqc-violation-message-target-entity-must-exist")->escaped(); |
|
116 | + return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_VIOLATION, $message); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /* |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * a) a property only |
122 | 122 | * b) a property and a number of items (each combination forming an individual claim) |
123 | 123 | */ |
124 | - if ( $items === [] ) { |
|
124 | + if ($items === []) { |
|
125 | 125 | $requiredStatement = $this->connectionCheckerHelper->findStatementWithProperty( |
126 | 126 | $targetEntity->getStatements(), |
127 | 127 | $propertyId |
@@ -134,37 +134,37 @@ discard block |
||
134 | 134 | ); |
135 | 135 | } |
136 | 136 | |
137 | - if ( $requiredStatement !== null ) { |
|
137 | + if ($requiredStatement !== null) { |
|
138 | 138 | $status = CheckResult::STATUS_COMPLIANCE; |
139 | 139 | $message = ''; |
140 | 140 | } else { |
141 | 141 | $status = CheckResult::STATUS_VIOLATION; |
142 | - $message = wfMessage( 'wbqc-violation-message-target-required-claim' ); |
|
142 | + $message = wfMessage('wbqc-violation-message-target-required-claim'); |
|
143 | 143 | $message->rawParams( |
144 | - $this->constraintParameterRenderer->formatEntityId( $targetEntityId, Role::SUBJECT ), |
|
145 | - $this->constraintParameterRenderer->formatEntityId( $propertyId, Role::PREDICATE ) |
|
144 | + $this->constraintParameterRenderer->formatEntityId($targetEntityId, Role::SUBJECT), |
|
145 | + $this->constraintParameterRenderer->formatEntityId($propertyId, Role::PREDICATE) |
|
146 | 146 | ); |
147 | - $message->numParams( count( $items ) ); |
|
148 | - $message->rawParams( $this->constraintParameterRenderer->formatItemIdSnakValueList( $items, Role::OBJECT ) ); |
|
147 | + $message->numParams(count($items)); |
|
148 | + $message->rawParams($this->constraintParameterRenderer->formatItemIdSnakValueList($items, Role::OBJECT)); |
|
149 | 149 | $message = $message->escaped(); |
150 | 150 | } |
151 | 151 | |
152 | - return ( new CheckResult( $context, $constraint, $parameters, $status, $message ) ) |
|
153 | - ->withMetadata( Metadata::ofDependencyMetadata( |
|
154 | - DependencyMetadata::ofEntityId( $targetEntityId ) ) ); |
|
152 | + return (new CheckResult($context, $constraint, $parameters, $status, $message)) |
|
153 | + ->withMetadata(Metadata::ofDependencyMetadata( |
|
154 | + DependencyMetadata::ofEntityId($targetEntityId) )); |
|
155 | 155 | } |
156 | 156 | |
157 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
157 | + public function checkConstraintParameters(Constraint $constraint) { |
|
158 | 158 | $constraintParameters = $constraint->getConstraintParameters(); |
159 | 159 | $exceptions = []; |
160 | 160 | try { |
161 | - $this->constraintParameterParser->parsePropertyParameter( $constraintParameters, $constraint->getConstraintTypeItemId() ); |
|
162 | - } catch ( ConstraintParameterException $e ) { |
|
161 | + $this->constraintParameterParser->parsePropertyParameter($constraintParameters, $constraint->getConstraintTypeItemId()); |
|
162 | + } catch (ConstraintParameterException $e) { |
|
163 | 163 | $exceptions[] = $e; |
164 | 164 | } |
165 | 165 | try { |
166 | - $this->constraintParameterParser->parseItemsParameter( $constraintParameters, $constraint->getConstraintTypeItemId(), false ); |
|
167 | - } catch ( ConstraintParameterException $e ) { |
|
166 | + $this->constraintParameterParser->parseItemsParameter($constraintParameters, $constraint->getConstraintTypeItemId(), false); |
|
167 | + } catch (ConstraintParameterException $e) { |
|
168 | 168 | $exceptions[] = $e; |
169 | 169 | } |
170 | 170 | return $exceptions; |