@@ -81,26 +81,26 @@ discard block |
||
81 | 81 | * @return bool |
82 | 82 | * @throws OverflowException if $entitiesChecked exceeds the configured limit |
83 | 83 | */ |
84 | - private function isSubclassOf( EntityId $comparativeClass, array $classesToCheck, &$entitiesChecked = 0 ) { |
|
85 | - $maxEntities = $this->config->get( 'WBQualityConstraintsTypeCheckMaxEntities' ); |
|
84 | + private function isSubclassOf(EntityId $comparativeClass, array $classesToCheck, &$entitiesChecked = 0) { |
|
85 | + $maxEntities = $this->config->get('WBQualityConstraintsTypeCheckMaxEntities'); |
|
86 | 86 | if ( ++$entitiesChecked > $maxEntities ) { |
87 | - throw new OverflowException( 'Too many entities to check' ); |
|
87 | + throw new OverflowException('Too many entities to check'); |
|
88 | 88 | } |
89 | 89 | |
90 | - $item = $this->entityLookup->getEntity( $comparativeClass ); |
|
91 | - if ( !( $item instanceof StatementListProvider ) ) { |
|
90 | + $item = $this->entityLookup->getEntity($comparativeClass); |
|
91 | + if (!($item instanceof StatementListProvider)) { |
|
92 | 92 | return false; // lookup failed, probably because item doesn't exist |
93 | 93 | } |
94 | 94 | |
95 | - $subclassId = $this->config->get( 'WBQualityConstraintsSubclassOfId' ); |
|
95 | + $subclassId = $this->config->get('WBQualityConstraintsSubclassOfId'); |
|
96 | 96 | $statements = $item->getStatements() |
97 | - ->getByPropertyId( new NumericPropertyId( $subclassId ) ) |
|
97 | + ->getByPropertyId(new NumericPropertyId($subclassId)) |
|
98 | 98 | ->getBestStatements(); |
99 | 99 | /** @var Statement $statement */ |
100 | - foreach ( $statements as $statement ) { |
|
100 | + foreach ($statements as $statement) { |
|
101 | 101 | $mainSnak = $statement->getMainSnak(); |
102 | 102 | |
103 | - if ( !$this->hasCorrectType( $mainSnak ) ) { |
|
103 | + if (!$this->hasCorrectType($mainSnak)) { |
|
104 | 104 | continue; |
105 | 105 | } |
106 | 106 | /** @var PropertyValueSnak $mainSnak */ |
@@ -110,11 +110,11 @@ discard block |
||
110 | 110 | '@phan-var EntityIdValue $dataValue'; |
111 | 111 | $comparativeClass = $dataValue->getEntityId(); |
112 | 112 | |
113 | - if ( in_array( $comparativeClass->getSerialization(), $classesToCheck ) ) { |
|
113 | + if (in_array($comparativeClass->getSerialization(), $classesToCheck)) { |
|
114 | 114 | return true; |
115 | 115 | } |
116 | 116 | |
117 | - if ( $this->isSubclassOf( $comparativeClass, $classesToCheck, $entitiesChecked ) ) { |
|
117 | + if ($this->isSubclassOf($comparativeClass, $classesToCheck, $entitiesChecked)) { |
|
118 | 118 | return true; |
119 | 119 | } |
120 | 120 | } |
@@ -135,48 +135,48 @@ discard block |
||
135 | 135 | * @return CachedBool |
136 | 136 | * @throws SparqlHelperException if SPARQL is used and the query times out or some other error occurs |
137 | 137 | */ |
138 | - public function isSubclassOfWithSparqlFallback( EntityId $comparativeClass, array $classesToCheck ) { |
|
138 | + public function isSubclassOfWithSparqlFallback(EntityId $comparativeClass, array $classesToCheck) { |
|
139 | 139 | try { |
140 | 140 | $entitiesChecked = 0; |
141 | - $start1 = microtime( true ); |
|
142 | - $isSubclass = $this->isSubclassOf( $comparativeClass, $classesToCheck, $entitiesChecked ); |
|
143 | - $end1 = microtime( true ); |
|
141 | + $start1 = microtime(true); |
|
142 | + $isSubclass = $this->isSubclassOf($comparativeClass, $classesToCheck, $entitiesChecked); |
|
143 | + $end1 = microtime(true); |
|
144 | 144 | $this->dataFactory->timing( |
145 | 145 | 'wikibase.quality.constraints.type.php.success.timing', |
146 | - ( $end1 - $start1 ) * 1000 |
|
146 | + ($end1 - $start1) * 1000 |
|
147 | 147 | ); |
148 | 148 | $this->dataFactory->timing( // not really a timing, but works like one (we want percentiles etc.) |
149 | 149 | 'wikibase.quality.constraints.type.php.success.entities', |
150 | 150 | $entitiesChecked |
151 | 151 | ); |
152 | 152 | |
153 | - return new CachedBool( $isSubclass, Metadata::blank() ); |
|
154 | - } catch ( OverflowException $e ) { |
|
155 | - $end1 = microtime( true ); |
|
153 | + return new CachedBool($isSubclass, Metadata::blank()); |
|
154 | + } catch (OverflowException $e) { |
|
155 | + $end1 = microtime(true); |
|
156 | 156 | $this->dataFactory->timing( |
157 | 157 | 'wikibase.quality.constraints.type.php.overflow.timing', |
158 | - ( $end1 - $start1 ) * 1000 |
|
158 | + ($end1 - $start1) * 1000 |
|
159 | 159 | ); |
160 | 160 | |
161 | - if ( !( $this->sparqlHelper instanceof DummySparqlHelper ) ) { |
|
161 | + if (!($this->sparqlHelper instanceof DummySparqlHelper)) { |
|
162 | 162 | $this->dataFactory->increment( |
163 | 163 | 'wikibase.quality.constraints.sparql.typeFallback' |
164 | 164 | ); |
165 | 165 | |
166 | - $start2 = microtime( true ); |
|
166 | + $start2 = microtime(true); |
|
167 | 167 | $hasType = $this->sparqlHelper->hasType( |
168 | 168 | $comparativeClass->getSerialization(), |
169 | 169 | $classesToCheck |
170 | 170 | ); |
171 | - $end2 = microtime( true ); |
|
171 | + $end2 = microtime(true); |
|
172 | 172 | $this->dataFactory->timing( |
173 | 173 | 'wikibase.quality.constraints.type.sparql.success.timing', |
174 | - ( $end2 - $start2 ) * 1000 |
|
174 | + ($end2 - $start2) * 1000 |
|
175 | 175 | ); |
176 | 176 | |
177 | 177 | return $hasType; |
178 | 178 | } else { |
179 | - return new CachedBool( false, Metadata::blank() ); |
|
179 | + return new CachedBool(false, Metadata::blank()); |
|
180 | 180 | } |
181 | 181 | } |
182 | 182 | } |
@@ -194,13 +194,13 @@ discard block |
||
194 | 194 | * @return CachedBool |
195 | 195 | * @throws SparqlHelperException if SPARQL is used and the query times out or some other error occurs |
196 | 196 | */ |
197 | - public function hasClassInRelation( StatementList $statements, array $relationIds, array $classesToCheck ) { |
|
197 | + public function hasClassInRelation(StatementList $statements, array $relationIds, array $classesToCheck) { |
|
198 | 198 | $metadatas = []; |
199 | 199 | |
200 | - foreach ( $this->getBestStatementsByPropertyIds( $statements, $relationIds ) as $statement ) { |
|
200 | + foreach ($this->getBestStatementsByPropertyIds($statements, $relationIds) as $statement) { |
|
201 | 201 | $mainSnak = $statement->getMainSnak(); |
202 | 202 | |
203 | - if ( !$this->hasCorrectType( $mainSnak ) ) { |
|
203 | + if (!$this->hasCorrectType($mainSnak)) { |
|
204 | 204 | continue; |
205 | 205 | } |
206 | 206 | /** @var PropertyValueSnak $mainSnak */ |
@@ -210,24 +210,24 @@ discard block |
||
210 | 210 | '@phan-var EntityIdValue $dataValue'; |
211 | 211 | $comparativeClass = $dataValue->getEntityId(); |
212 | 212 | |
213 | - if ( in_array( $comparativeClass->getSerialization(), $classesToCheck ) ) { |
|
213 | + if (in_array($comparativeClass->getSerialization(), $classesToCheck)) { |
|
214 | 214 | // discard $metadatas, we know this is fresh |
215 | - return new CachedBool( true, Metadata::blank() ); |
|
215 | + return new CachedBool(true, Metadata::blank()); |
|
216 | 216 | } |
217 | 217 | |
218 | - $result = $this->isSubclassOfWithSparqlFallback( $comparativeClass, $classesToCheck ); |
|
218 | + $result = $this->isSubclassOfWithSparqlFallback($comparativeClass, $classesToCheck); |
|
219 | 219 | $metadatas[] = $result->getMetadata(); |
220 | - if ( $result->getBool() ) { |
|
220 | + if ($result->getBool()) { |
|
221 | 221 | return new CachedBool( |
222 | 222 | true, |
223 | - Metadata::merge( $metadatas ) |
|
223 | + Metadata::merge($metadatas) |
|
224 | 224 | ); |
225 | 225 | } |
226 | 226 | } |
227 | 227 | |
228 | 228 | return new CachedBool( |
229 | 229 | false, |
230 | - Metadata::merge( $metadatas ) |
|
230 | + Metadata::merge($metadatas) |
|
231 | 231 | ); |
232 | 232 | } |
233 | 233 | |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | * @return bool |
237 | 237 | * @phan-assert PropertyValueSnak $mainSnak |
238 | 238 | */ |
239 | - private function hasCorrectType( Snak $mainSnak ) { |
|
239 | + private function hasCorrectType(Snak $mainSnak) { |
|
240 | 240 | return $mainSnak instanceof PropertyValueSnak |
241 | 241 | && $mainSnak->getDataValue()->getType() === 'wikibase-entityid'; |
242 | 242 | } |
@@ -253,15 +253,15 @@ discard block |
||
253 | 253 | ) { |
254 | 254 | $statementArrays = []; |
255 | 255 | |
256 | - foreach ( $propertyIdSerializations as $propertyIdSerialization ) { |
|
257 | - $propertyId = new NumericPropertyId( $propertyIdSerialization ); |
|
256 | + foreach ($propertyIdSerializations as $propertyIdSerialization) { |
|
257 | + $propertyId = new NumericPropertyId($propertyIdSerialization); |
|
258 | 258 | $statementArrays[] = $statements |
259 | - ->getByPropertyId( $propertyId ) |
|
259 | + ->getByPropertyId($propertyId) |
|
260 | 260 | ->getBestStatements() |
261 | 261 | ->toArray(); |
262 | 262 | } |
263 | 263 | |
264 | - return call_user_func_array( 'array_merge', $statementArrays ); |
|
264 | + return call_user_func_array('array_merge', $statementArrays); |
|
265 | 265 | } |
266 | 266 | |
267 | 267 | /** |
@@ -281,8 +281,8 @@ discard block |
||
281 | 281 | $relation |
282 | 282 | ) { |
283 | 283 | $classes = array_map( |
284 | - static function ( $itemIdSerialization ) { |
|
285 | - return new ItemId( $itemIdSerialization ); |
|
284 | + static function($itemIdSerialization) { |
|
285 | + return new ItemId($itemIdSerialization); |
|
286 | 286 | }, |
287 | 287 | $classes |
288 | 288 | ); |
@@ -294,10 +294,10 @@ discard block |
||
294 | 294 | // wbqc-violation-message-valueType-instance |
295 | 295 | // wbqc-violation-message-valueType-subclass |
296 | 296 | // wbqc-violation-message-valueType-instanceOrSubclass |
297 | - return ( new ViolationMessage( 'wbqc-violation-message-' . $checker . '-' . $relation ) ) |
|
298 | - ->withEntityId( $propertyId, Role::CONSTRAINT_PROPERTY ) |
|
299 | - ->withEntityId( $entityId, Role::SUBJECT ) |
|
300 | - ->withEntityIdList( $classes, Role::OBJECT ); |
|
297 | + return (new ViolationMessage('wbqc-violation-message-'.$checker.'-'.$relation)) |
|
298 | + ->withEntityId($propertyId, Role::CONSTRAINT_PROPERTY) |
|
299 | + ->withEntityId($entityId, Role::SUBJECT) |
|
300 | + ->withEntityIdList($classes, Role::OBJECT); |
|
301 | 301 | } |
302 | 302 | |
303 | 303 | } |
@@ -73,8 +73,8 @@ discard block |
||
73 | 73 | * @throws ConstraintParameterException |
74 | 74 | * @return array [ DataValue|null $min, DataValue|null $max, NumericPropertyId $property, array $parameters ] |
75 | 75 | */ |
76 | - private function parseConstraintParameters( Constraint $constraint ) { |
|
77 | - list( $min, $max ) = $this->constraintParameterParser->parseQuantityRangeParameter( |
|
76 | + private function parseConstraintParameters(Constraint $constraint) { |
|
77 | + list($min, $max) = $this->constraintParameterParser->parseQuantityRangeParameter( |
|
78 | 78 | $constraint->getConstraintParameters(), |
79 | 79 | $constraint->getConstraintTypeItemId() |
80 | 80 | ); |
@@ -84,15 +84,15 @@ discard block |
||
84 | 84 | ); |
85 | 85 | |
86 | 86 | $parameters = []; |
87 | - if ( $min !== null ) { |
|
88 | - $parameters['minimum_quantity'] = [ $min ]; |
|
87 | + if ($min !== null) { |
|
88 | + $parameters['minimum_quantity'] = [$min]; |
|
89 | 89 | } |
90 | - if ( $max !== null ) { |
|
91 | - $parameters['maximum_quantity'] = [ $max ]; |
|
90 | + if ($max !== null) { |
|
91 | + $parameters['maximum_quantity'] = [$max]; |
|
92 | 92 | } |
93 | - $parameters['property'] = [ $property ]; |
|
93 | + $parameters['property'] = [$property]; |
|
94 | 94 | |
95 | - return [ $min, $max, $property, $parameters ]; |
|
95 | + return [$min, $max, $property, $parameters]; |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
@@ -102,13 +102,13 @@ discard block |
||
102 | 102 | * |
103 | 103 | * @return bool |
104 | 104 | */ |
105 | - private function rangeInYears( $min, $max ) { |
|
106 | - $yearUnit = $this->config->get( 'WBQualityConstraintsYearUnit' ); |
|
105 | + private function rangeInYears($min, $max) { |
|
106 | + $yearUnit = $this->config->get('WBQualityConstraintsYearUnit'); |
|
107 | 107 | |
108 | - if ( $min !== null && $min->getUnit() === $yearUnit ) { |
|
108 | + if ($min !== null && $min->getUnit() === $yearUnit) { |
|
109 | 109 | return true; |
110 | 110 | } |
111 | - if ( $max !== null && $max->getUnit() === $yearUnit ) { |
|
111 | + if ($max !== null && $max->getUnit() === $yearUnit) { |
|
112 | 112 | return true; |
113 | 113 | } |
114 | 114 | |
@@ -124,30 +124,30 @@ discard block |
||
124 | 124 | * @throws ConstraintParameterException |
125 | 125 | * @return CheckResult |
126 | 126 | */ |
127 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
128 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
129 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED ); |
|
127 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
128 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
129 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED); |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | $parameters = []; |
133 | 133 | |
134 | 134 | $snak = $context->getSnak(); |
135 | 135 | |
136 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
136 | + if (!$snak instanceof PropertyValueSnak) { |
|
137 | 137 | // nothing to check |
138 | - return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE ); |
|
138 | + return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | $minuend = $snak->getDataValue(); |
142 | 142 | '@phan-var \DataValues\TimeValue|\DataValues\QuantityValue|\DataValues\UnboundedQuantityValue $minuend'; |
143 | 143 | |
144 | 144 | /** @var NumericPropertyId $property */ |
145 | - list( $min, $max, $property, $parameters ) = $this->parseConstraintParameters( $constraint ); |
|
145 | + list($min, $max, $property, $parameters) = $this->parseConstraintParameters($constraint); |
|
146 | 146 | |
147 | 147 | // checks only the first occurrence of the referenced property |
148 | - foreach ( $context->getSnakGroup( Context::GROUP_NON_DEPRECATED ) as $otherSnak ) { |
|
148 | + foreach ($context->getSnakGroup(Context::GROUP_NON_DEPRECATED) as $otherSnak) { |
|
149 | 149 | if ( |
150 | - !$property->equals( $otherSnak->getPropertyId() ) || |
|
150 | + !$property->equals($otherSnak->getPropertyId()) || |
|
151 | 151 | !$otherSnak instanceof PropertyValueSnak |
152 | 152 | ) { |
153 | 153 | continue; |
@@ -155,30 +155,29 @@ discard block |
||
155 | 155 | |
156 | 156 | $subtrahend = $otherSnak->getDataValue(); |
157 | 157 | '@phan-var \DataValues\TimeValue|\DataValues\QuantityValue|\DataValues\UnboundedQuantityValue $subtrahend'; |
158 | - if ( $subtrahend->getType() === $minuend->getType() ) { |
|
159 | - $diff = $this->rangeInYears( $min, $max ) && $minuend->getType() === 'time' ? |
|
160 | - $this->rangeCheckerHelper->getDifferenceInYears( $minuend, $subtrahend ) : |
|
161 | - $this->rangeCheckerHelper->getDifference( $minuend, $subtrahend ); |
|
158 | + if ($subtrahend->getType() === $minuend->getType()) { |
|
159 | + $diff = $this->rangeInYears($min, $max) && $minuend->getType() === 'time' ? |
|
160 | + $this->rangeCheckerHelper->getDifferenceInYears($minuend, $subtrahend) : $this->rangeCheckerHelper->getDifference($minuend, $subtrahend); |
|
162 | 161 | |
163 | - if ( $this->rangeCheckerHelper->getComparison( $min, $diff ) > 0 || |
|
164 | - $this->rangeCheckerHelper->getComparison( $diff, $max ) > 0 |
|
162 | + if ($this->rangeCheckerHelper->getComparison($min, $diff) > 0 || |
|
163 | + $this->rangeCheckerHelper->getComparison($diff, $max) > 0 |
|
165 | 164 | ) { |
166 | 165 | // at least one of $min, $max is set at this point, otherwise there could be no violation |
167 | - $openness = $min !== null ? ( $max !== null ? '' : '-rightopen' ) : '-leftopen'; |
|
166 | + $openness = $min !== null ? ($max !== null ? '' : '-rightopen') : '-leftopen'; |
|
168 | 167 | // possible message keys: |
169 | 168 | // wbqc-violation-message-diff-within-range |
170 | 169 | // wbqc-violation-message-diff-within-range-leftopen |
171 | 170 | // wbqc-violation-message-diff-within-range-rightopen |
172 | - $message = ( new ViolationMessage( "wbqc-violation-message-diff-within-range$openness" ) ) |
|
173 | - ->withEntityId( $context->getSnak()->getPropertyId(), Role::PREDICATE ) |
|
174 | - ->withDataValue( $minuend, Role::OBJECT ) |
|
175 | - ->withEntityId( $otherSnak->getPropertyId(), Role::PREDICATE ) |
|
176 | - ->withDataValue( $subtrahend, Role::OBJECT ); |
|
177 | - if ( $min !== null ) { |
|
178 | - $message = $message->withDataValue( $min, Role::OBJECT ); |
|
171 | + $message = (new ViolationMessage("wbqc-violation-message-diff-within-range$openness")) |
|
172 | + ->withEntityId($context->getSnak()->getPropertyId(), Role::PREDICATE) |
|
173 | + ->withDataValue($minuend, Role::OBJECT) |
|
174 | + ->withEntityId($otherSnak->getPropertyId(), Role::PREDICATE) |
|
175 | + ->withDataValue($subtrahend, Role::OBJECT); |
|
176 | + if ($min !== null) { |
|
177 | + $message = $message->withDataValue($min, Role::OBJECT); |
|
179 | 178 | } |
180 | - if ( $max !== null ) { |
|
181 | - $message = $message->withDataValue( $max, Role::OBJECT ); |
|
179 | + if ($max !== null) { |
|
180 | + $message = $message->withDataValue($max, Role::OBJECT); |
|
182 | 181 | } |
183 | 182 | $status = CheckResult::STATUS_VIOLATION; |
184 | 183 | } else { |
@@ -186,17 +185,17 @@ discard block |
||
186 | 185 | $status = CheckResult::STATUS_COMPLIANCE; |
187 | 186 | } |
188 | 187 | } else { |
189 | - $message = new ViolationMessage( 'wbqc-violation-message-diff-within-range-must-have-equal-types' ); |
|
188 | + $message = new ViolationMessage('wbqc-violation-message-diff-within-range-must-have-equal-types'); |
|
190 | 189 | $status = CheckResult::STATUS_VIOLATION; |
191 | 190 | } |
192 | 191 | |
193 | - return new CheckResult( $context, $constraint, $parameters, $status, $message ); |
|
192 | + return new CheckResult($context, $constraint, $parameters, $status, $message); |
|
194 | 193 | } |
195 | 194 | |
196 | - return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE ); |
|
195 | + return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE); |
|
197 | 196 | } |
198 | 197 | |
199 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
198 | + public function checkConstraintParameters(Constraint $constraint) { |
|
200 | 199 | $constraintParameters = $constraint->getConstraintParameters(); |
201 | 200 | $constraintTypeItemId = $constraint->getConstraintTypeItemId(); |
202 | 201 | $exceptions = []; |
@@ -205,7 +204,7 @@ discard block |
||
205 | 204 | $constraintParameters, |
206 | 205 | $constraintTypeItemId |
207 | 206 | ); |
208 | - } catch ( ConstraintParameterException $e ) { |
|
207 | + } catch (ConstraintParameterException $e) { |
|
209 | 208 | $exceptions[] = $e; |
210 | 209 | } |
211 | 210 | try { |
@@ -213,7 +212,7 @@ discard block |
||
213 | 212 | $constraintParameters, |
214 | 213 | $constraintTypeItemId |
215 | 214 | ); |
216 | - } catch ( ConstraintParameterException $e ) { |
|
215 | + } catch (ConstraintParameterException $e) { |
|
217 | 216 | $exceptions[] = $e; |
218 | 217 | } |
219 | 218 | return $exceptions; |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | * @codeCoverageIgnore This method is purely declarative. |
80 | 80 | */ |
81 | 81 | public function getDefaultContextTypes() { |
82 | - return [ Context::TYPE_STATEMENT ]; |
|
82 | + return [Context::TYPE_STATEMENT]; |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | /** @codeCoverageIgnore This method is purely declarative. */ |
@@ -96,31 +96,31 @@ discard block |
||
96 | 96 | * @return CheckResult |
97 | 97 | * @throws \ConfigException |
98 | 98 | */ |
99 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
100 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
101 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED ); |
|
99 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
100 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
101 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED); |
|
102 | 102 | } |
103 | 103 | $snak = $context->getSnak(); |
104 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
104 | + if (!$snak instanceof PropertyValueSnak) { |
|
105 | 105 | // nothing to check |
106 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_COMPLIANCE ); |
|
106 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_COMPLIANCE); |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | $dataValue = $snak->getDataValue(); |
110 | - if ( !$dataValue instanceof EntityIdValue ) { |
|
110 | + if (!$dataValue instanceof EntityIdValue) { |
|
111 | 111 | // wrong data type |
112 | - $message = ( new ViolationMessage( 'wbqc-violation-message-value-needed-of-type' ) ) |
|
113 | - ->withEntityId( new ItemId( $constraint->getConstraintTypeItemId() ), Role::CONSTRAINT_TYPE_ITEM ) |
|
114 | - ->withDataValueType( 'wikibase-entityid' ); |
|
115 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_VIOLATION, $message ); |
|
112 | + $message = (new ViolationMessage('wbqc-violation-message-value-needed-of-type')) |
|
113 | + ->withEntityId(new ItemId($constraint->getConstraintTypeItemId()), Role::CONSTRAINT_TYPE_ITEM) |
|
114 | + ->withDataValueType('wikibase-entityid'); |
|
115 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_VIOLATION, $message); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | $objectId = $dataValue->getEntityId(); |
119 | - $objectItem = $this->entityLookup->getEntity( $objectId ); |
|
120 | - if ( !( $objectItem instanceof StatementListProvider ) ) { |
|
119 | + $objectItem = $this->entityLookup->getEntity($objectId); |
|
120 | + if (!($objectItem instanceof StatementListProvider)) { |
|
121 | 121 | // object was deleted/doesn't exist |
122 | - $message = new ViolationMessage( 'wbqc-violation-message-value-entity-must-exist' ); |
|
123 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_VIOLATION, $message ); |
|
122 | + $message = new ViolationMessage('wbqc-violation-message-value-entity-must-exist'); |
|
123 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_VIOLATION, $message); |
|
124 | 124 | } |
125 | 125 | /** @var Statement[] $objectStatements */ |
126 | 126 | $objectStatements = $objectItem->getStatements()->toArray(); |
@@ -128,9 +128,9 @@ discard block |
||
128 | 128 | $subjectId = $context->getEntity()->getId(); |
129 | 129 | $subjectStatements = $context->getEntity()->getStatements()->toArray(); |
130 | 130 | /** @var String[] $startPropertyIds */ |
131 | - $startPropertyIds = $this->config->get( self::CONFIG_VARIABLE_START_PROPERTY_IDS ); |
|
131 | + $startPropertyIds = $this->config->get(self::CONFIG_VARIABLE_START_PROPERTY_IDS); |
|
132 | 132 | /** @var String[] $endPropertyIds */ |
133 | - $endPropertyIds = $this->config->get( self::CONFIG_VARIABLE_END_PROPERTY_IDS ); |
|
133 | + $endPropertyIds = $this->config->get(self::CONFIG_VARIABLE_END_PROPERTY_IDS); |
|
134 | 134 | $subjectStartValue = $this->getExtremeValue( |
135 | 135 | $startPropertyIds, |
136 | 136 | $subjectStatements, |
@@ -152,15 +152,15 @@ discard block |
||
152 | 152 | 'end' |
153 | 153 | ); |
154 | 154 | if ( |
155 | - $this->rangeCheckerHelper->getComparison( $subjectStartValue, $subjectEndValue ) <= 0 && |
|
156 | - $this->rangeCheckerHelper->getComparison( $objectStartValue, $objectEndValue ) <= 0 && ( |
|
157 | - $this->rangeCheckerHelper->getComparison( $subjectEndValue, $objectStartValue ) < 0 || |
|
158 | - $this->rangeCheckerHelper->getComparison( $objectEndValue, $subjectStartValue ) < 0 |
|
155 | + $this->rangeCheckerHelper->getComparison($subjectStartValue, $subjectEndValue) <= 0 && |
|
156 | + $this->rangeCheckerHelper->getComparison($objectStartValue, $objectEndValue) <= 0 && ( |
|
157 | + $this->rangeCheckerHelper->getComparison($subjectEndValue, $objectStartValue) < 0 || |
|
158 | + $this->rangeCheckerHelper->getComparison($objectEndValue, $subjectStartValue) < 0 |
|
159 | 159 | ) |
160 | 160 | ) { |
161 | 161 | if ( |
162 | 162 | $subjectEndValue == null || |
163 | - $this->rangeCheckerHelper->getComparison( $objectEndValue, $subjectEndValue ) < 0 |
|
163 | + $this->rangeCheckerHelper->getComparison($objectEndValue, $subjectEndValue) < 0 |
|
164 | 164 | ) { |
165 | 165 | $earlierEntityId = $objectId; |
166 | 166 | $minEndValue = $objectEndValue; |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | $message = null; |
184 | 184 | $status = CheckResult::STATUS_COMPLIANCE; |
185 | 185 | } |
186 | - return new CheckResult( $context, $constraint, [], $status, $message ); |
|
186 | + return new CheckResult($context, $constraint, [], $status, $message); |
|
187 | 187 | } |
188 | 188 | |
189 | 189 | /** |
@@ -193,19 +193,19 @@ discard block |
||
193 | 193 | * |
194 | 194 | * @return DataValue|null |
195 | 195 | */ |
196 | - private function getExtremeValue( $extremePropertyIds, $statements, $startOrEnd ) { |
|
197 | - if ( $startOrEnd !== 'start' && $startOrEnd !== 'end' ) { |
|
198 | - throw new \InvalidArgumentException( '$startOrEnd must be \'start\' or \'end\'.' ); |
|
196 | + private function getExtremeValue($extremePropertyIds, $statements, $startOrEnd) { |
|
197 | + if ($startOrEnd !== 'start' && $startOrEnd !== 'end') { |
|
198 | + throw new \InvalidArgumentException('$startOrEnd must be \'start\' or \'end\'.'); |
|
199 | 199 | } |
200 | 200 | $extremeValue = null; |
201 | - foreach ( $extremePropertyIds as $extremePropertyId ) { |
|
202 | - $statementList = new StatementList( ...$statements ); |
|
203 | - $extremeStatements = $statementList->getByPropertyId( new NumericPropertyId( $extremePropertyId ) ); |
|
201 | + foreach ($extremePropertyIds as $extremePropertyId) { |
|
202 | + $statementList = new StatementList(...$statements); |
|
203 | + $extremeStatements = $statementList->getByPropertyId(new NumericPropertyId($extremePropertyId)); |
|
204 | 204 | /** @var Statement $extremeStatement */ |
205 | - foreach ( $extremeStatements as $extremeStatement ) { |
|
206 | - if ( $extremeStatement->getRank() !== Statement::RANK_DEPRECATED ) { |
|
205 | + foreach ($extremeStatements as $extremeStatement) { |
|
206 | + if ($extremeStatement->getRank() !== Statement::RANK_DEPRECATED) { |
|
207 | 207 | $snak = $extremeStatement->getMainSnak(); |
208 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
208 | + if (!$snak instanceof PropertyValueSnak) { |
|
209 | 209 | return null; |
210 | 210 | } else { |
211 | 211 | $comparison = $this->rangeCheckerHelper->getComparison( |
@@ -214,8 +214,8 @@ discard block |
||
214 | 214 | ); |
215 | 215 | if ( |
216 | 216 | $extremeValue === null || |
217 | - ( $startOrEnd === 'start' && $comparison < 0 ) || |
|
218 | - ( $startOrEnd === 'end' && $comparison > 0 ) |
|
217 | + ($startOrEnd === 'start' && $comparison < 0) || |
|
218 | + ($startOrEnd === 'end' && $comparison > 0) |
|
219 | 219 | ) { |
220 | 220 | $extremeValue = $snak->getDataValue(); |
221 | 221 | } |
@@ -245,17 +245,16 @@ discard block |
||
245 | 245 | DataValue $maxStartValue |
246 | 246 | ) { |
247 | 247 | $messageKey = $earlierEntityId === $subjectId ? |
248 | - 'wbqc-violation-message-contemporary-subject-earlier' : |
|
249 | - 'wbqc-violation-message-contemporary-value-earlier'; |
|
250 | - return ( new ViolationMessage( $messageKey ) ) |
|
251 | - ->withEntityId( $subjectId, Role::SUBJECT ) |
|
252 | - ->withEntityId( $propertyId, Role::PREDICATE ) |
|
253 | - ->withEntityId( $objectId, Role::OBJECT ) |
|
254 | - ->withDataValue( $minEndValue, Role::OBJECT ) |
|
255 | - ->withDataValue( $maxStartValue, Role::OBJECT ); |
|
248 | + 'wbqc-violation-message-contemporary-subject-earlier' : 'wbqc-violation-message-contemporary-value-earlier'; |
|
249 | + return (new ViolationMessage($messageKey)) |
|
250 | + ->withEntityId($subjectId, Role::SUBJECT) |
|
251 | + ->withEntityId($propertyId, Role::PREDICATE) |
|
252 | + ->withEntityId($objectId, Role::OBJECT) |
|
253 | + ->withDataValue($minEndValue, Role::OBJECT) |
|
254 | + ->withDataValue($maxStartValue, Role::OBJECT); |
|
256 | 255 | } |
257 | 256 | |
258 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
257 | + public function checkConstraintParameters(Constraint $constraint) { |
|
259 | 258 | // no parameters |
260 | 259 | return []; |
261 | 260 | } |
@@ -10,14 +10,13 @@ |
||
10 | 10 | */ |
11 | 11 | class ConstraintDeserializer { |
12 | 12 | |
13 | - public function deserialize( array $serialization ) { |
|
13 | + public function deserialize(array $serialization) { |
|
14 | 14 | return new Constraint( |
15 | 15 | $serialization['id'], |
16 | - new NumericPropertyId( $serialization['pid'] ), |
|
16 | + new NumericPropertyId($serialization['pid']), |
|
17 | 17 | $serialization['qid'], |
18 | - array_key_exists( 'params', $serialization ) ? |
|
19 | - $serialization['params'] : |
|
20 | - [] |
|
18 | + array_key_exists('params', $serialization) ? |
|
19 | + $serialization['params'] : [] |
|
21 | 20 | ); |
22 | 21 | } |
23 | 22 |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | * @return bool |
17 | 17 | * @throws DBUnexpectedError |
18 | 18 | */ |
19 | - public function insertBatch( array $constraints ); |
|
19 | + public function insertBatch(array $constraints); |
|
20 | 20 | |
21 | 21 | /** |
22 | 22 | * Delete all constraints for the property ID. |
@@ -25,6 +25,6 @@ discard block |
||
25 | 25 | * |
26 | 26 | * @throws DBUnexpectedError |
27 | 27 | */ |
28 | - public function deleteForProperty( NumericPropertyId $propertyId ); |
|
28 | + public function deleteForProperty(NumericPropertyId $propertyId); |
|
29 | 29 | |
30 | 30 | } |
@@ -24,16 +24,16 @@ discard block |
||
24 | 24 | * then using the main DBLoadBalancer service may be incorrect. |
25 | 25 | * @param string|false $dbName Database name ($domain for ILoadBalancer methods). |
26 | 26 | */ |
27 | - public function __construct( ILoadBalancer $lb, $dbName ) { |
|
27 | + public function __construct(ILoadBalancer $lb, $dbName) { |
|
28 | 28 | $this->lb = $lb; |
29 | 29 | $this->dbName = $dbName; |
30 | 30 | } |
31 | 31 | |
32 | - private function encodeConstraintParameters( array $constraintParameters ) { |
|
33 | - $json = json_encode( $constraintParameters, JSON_FORCE_OBJECT ); |
|
32 | + private function encodeConstraintParameters(array $constraintParameters) { |
|
33 | + $json = json_encode($constraintParameters, JSON_FORCE_OBJECT); |
|
34 | 34 | |
35 | - if ( strlen( $json ) > 50000 ) { |
|
36 | - $json = json_encode( [ '@error' => [ 'toolong' => true ] ] ); |
|
35 | + if (strlen($json) > 50000) { |
|
36 | + $json = json_encode(['@error' => ['toolong' => true]]); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | return $json; |
@@ -45,21 +45,21 @@ discard block |
||
45 | 45 | * @throws DBUnexpectedError |
46 | 46 | * @return bool |
47 | 47 | */ |
48 | - public function insertBatch( array $constraints ) { |
|
48 | + public function insertBatch(array $constraints) { |
|
49 | 49 | $accumulator = array_map( |
50 | - function ( Constraint $constraint ) { |
|
50 | + function(Constraint $constraint) { |
|
51 | 51 | return [ |
52 | 52 | 'constraint_guid' => $constraint->getConstraintId(), |
53 | 53 | 'pid' => $constraint->getPropertyId()->getNumericId(), |
54 | 54 | 'constraint_type_qid' => $constraint->getConstraintTypeItemId(), |
55 | - 'constraint_parameters' => $this->encodeConstraintParameters( $constraint->getConstraintParameters() ) |
|
55 | + 'constraint_parameters' => $this->encodeConstraintParameters($constraint->getConstraintParameters()) |
|
56 | 56 | ]; |
57 | 57 | }, |
58 | 58 | $constraints |
59 | 59 | ); |
60 | 60 | |
61 | - $dbw = $this->lb->getConnection( ILoadBalancer::DB_PRIMARY, [], $this->dbName ); |
|
62 | - return $dbw->insert( 'wbqc_constraints', $accumulator, __METHOD__ ); |
|
61 | + $dbw = $this->lb->getConnection(ILoadBalancer::DB_PRIMARY, [], $this->dbName); |
|
62 | + return $dbw->insert('wbqc_constraints', $accumulator, __METHOD__); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -69,8 +69,8 @@ discard block |
||
69 | 69 | * |
70 | 70 | * @throws DBUnexpectedError |
71 | 71 | */ |
72 | - public function deleteForProperty( NumericPropertyId $propertyId ) { |
|
73 | - $dbw = $this->lb->getConnection( ILoadBalancer::DB_PRIMARY, [], $this->dbName ); |
|
72 | + public function deleteForProperty(NumericPropertyId $propertyId) { |
|
73 | + $dbw = $this->lb->getConnection(ILoadBalancer::DB_PRIMARY, [], $this->dbName); |
|
74 | 74 | $dbw->delete( |
75 | 75 | 'wbqc_constraints', |
76 | 76 | [ |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | /** |
27 | 27 | * @param BagOStuff $cache |
28 | 28 | */ |
29 | - public function __construct( BagOStuff $cache ) { |
|
29 | + public function __construct(BagOStuff $cache) { |
|
30 | 30 | $this->cache = $cache; |
31 | 31 | } |
32 | 32 | |
@@ -37,17 +37,17 @@ discard block |
||
37 | 37 | * |
38 | 38 | * @throws \Wikimedia\Assert\ParameterTypeException |
39 | 39 | */ |
40 | - private function makeKey( $id ) { |
|
41 | - if ( empty( trim( $id ) ) ) { |
|
42 | - throw new ParameterTypeException( '$id', 'non-empty string' ); |
|
40 | + private function makeKey($id) { |
|
41 | + if (empty(trim($id))) { |
|
42 | + throw new ParameterTypeException('$id', 'non-empty string'); |
|
43 | 43 | } |
44 | 44 | |
45 | - Assert::parameterType( 'string', $id, '$id' ); |
|
45 | + Assert::parameterType('string', $id, '$id'); |
|
46 | 46 | |
47 | 47 | return $this->cache->makeKey( |
48 | 48 | 'WikibaseQualityConstraints', |
49 | 49 | 'ExpiryLock', |
50 | - (string)$id |
|
50 | + (string) $id |
|
51 | 51 | ); |
52 | 52 | } |
53 | 53 | |
@@ -59,15 +59,15 @@ discard block |
||
59 | 59 | * |
60 | 60 | * @throws \Wikimedia\Assert\ParameterTypeException |
61 | 61 | */ |
62 | - public function lock( $id, ConvertibleTimestamp $expiryTimestamp ) { |
|
62 | + public function lock($id, ConvertibleTimestamp $expiryTimestamp) { |
|
63 | 63 | |
64 | - $cacheId = $this->makeKey( $id ); |
|
64 | + $cacheId = $this->makeKey($id); |
|
65 | 65 | |
66 | - if ( !$this->isLockedInternal( $cacheId ) ) { |
|
66 | + if (!$this->isLockedInternal($cacheId)) { |
|
67 | 67 | return $this->cache->set( |
68 | 68 | $cacheId, |
69 | - $expiryTimestamp->getTimestamp( TS_UNIX ), |
|
70 | - (int)$expiryTimestamp->getTimestamp( TS_UNIX ) |
|
69 | + $expiryTimestamp->getTimestamp(TS_UNIX), |
|
70 | + (int) $expiryTimestamp->getTimestamp(TS_UNIX) |
|
71 | 71 | ); |
72 | 72 | } else { |
73 | 73 | return false; |
@@ -81,20 +81,20 @@ discard block |
||
81 | 81 | * |
82 | 82 | * @throws \Wikimedia\Assert\ParameterTypeException |
83 | 83 | */ |
84 | - private function isLockedInternal( $cacheId ) { |
|
85 | - $expiryTime = $this->cache->get( $cacheId ); |
|
86 | - if ( !$expiryTime ) { |
|
84 | + private function isLockedInternal($cacheId) { |
|
85 | + $expiryTime = $this->cache->get($cacheId); |
|
86 | + if (!$expiryTime) { |
|
87 | 87 | return false; |
88 | 88 | } |
89 | 89 | |
90 | 90 | try { |
91 | - $lockExpiryTimeStamp = new ConvertibleTimestamp( $expiryTime ); |
|
92 | - } catch ( TimestampException $exception ) { |
|
91 | + $lockExpiryTimeStamp = new ConvertibleTimestamp($expiryTime); |
|
92 | + } catch (TimestampException $exception) { |
|
93 | 93 | return false; |
94 | 94 | } |
95 | 95 | |
96 | 96 | $now = new ConvertibleTimestamp(); |
97 | - if ( $now->timestamp < $lockExpiryTimeStamp->timestamp ) { |
|
97 | + if ($now->timestamp < $lockExpiryTimeStamp->timestamp) { |
|
98 | 98 | return true; |
99 | 99 | } else { |
100 | 100 | return false; |
@@ -108,8 +108,8 @@ discard block |
||
108 | 108 | * |
109 | 109 | * @throws \Wikimedia\Assert\ParameterTypeException |
110 | 110 | */ |
111 | - public function isLocked( $id ) { |
|
112 | - return $this->isLockedInternal( $this->makeKey( $id ) ); |
|
111 | + public function isLocked($id) { |
|
112 | + return $this->isLockedInternal($this->makeKey($id)); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | /** |
27 | 27 | * @param ConstraintLookup $lookup The lookup to which all queries are delegated. |
28 | 28 | */ |
29 | - public function __construct( ConstraintLookup $lookup ) { |
|
29 | + public function __construct(ConstraintLookup $lookup) { |
|
30 | 30 | $this->lookup = $lookup; |
31 | 31 | } |
32 | 32 | |
@@ -35,10 +35,10 @@ discard block |
||
35 | 35 | * |
36 | 36 | * @return Constraint[] |
37 | 37 | */ |
38 | - public function queryConstraintsForProperty( NumericPropertyId $propertyId ) { |
|
38 | + public function queryConstraintsForProperty(NumericPropertyId $propertyId) { |
|
39 | 39 | $id = $propertyId->getSerialization(); |
40 | - if ( !array_key_exists( $id, $this->cache ) ) { |
|
41 | - $this->cache[$id] = $this->lookup->queryConstraintsForProperty( $propertyId ); |
|
40 | + if (!array_key_exists($id, $this->cache)) { |
|
41 | + $this->cache[$id] = $this->lookup->queryConstraintsForProperty($propertyId); |
|
42 | 42 | } |
43 | 43 | return $this->cache[$id]; |
44 | 44 | } |
@@ -14,6 +14,6 @@ |
||
14 | 14 | * |
15 | 15 | * @return Constraint[] |
16 | 16 | */ |
17 | - public function queryConstraintsForProperty( NumericPropertyId $propertyId ); |
|
17 | + public function queryConstraintsForProperty(NumericPropertyId $propertyId); |
|
18 | 18 | |
19 | 19 | } |