@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | * @throws ConstraintParameterException |
| 58 | 58 | * @return CheckResult |
| 59 | 59 | */ |
| 60 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
| 61 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
| 62 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_DEPRECATED ); |
|
| 60 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
| 61 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
| 62 | + return new CheckResult($context, $constraint, CheckResult::STATUS_DEPRECATED); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | $constraintParameters = $constraint->getConstraintParameters(); |
@@ -73,23 +73,23 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | $snak = $context->getSnak(); |
| 75 | 75 | |
| 76 | - $message = ( new ViolationMessage( 'wbqc-violation-message-one-of' ) ) |
|
| 77 | - ->withEntityId( $context->getSnak()->getPropertyId(), Role::PREDICATE ) |
|
| 78 | - ->withItemIdSnakValueList( $items, Role::OBJECT ); |
|
| 76 | + $message = (new ViolationMessage('wbqc-violation-message-one-of')) |
|
| 77 | + ->withEntityId($context->getSnak()->getPropertyId(), Role::PREDICATE) |
|
| 78 | + ->withItemIdSnakValueList($items, Role::OBJECT); |
|
| 79 | 79 | $status = CheckResult::STATUS_VIOLATION; |
| 80 | 80 | |
| 81 | - foreach ( $items as $item ) { |
|
| 82 | - if ( $item->matchesSnak( $snak ) ) { |
|
| 81 | + foreach ($items as $item) { |
|
| 82 | + if ($item->matchesSnak($snak)) { |
|
| 83 | 83 | $message = null; |
| 84 | 84 | $status = CheckResult::STATUS_COMPLIANCE; |
| 85 | 85 | break; |
| 86 | 86 | } |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - return new CheckResult( $context, $constraint, $status, $message ); |
|
| 89 | + return new CheckResult($context, $constraint, $status, $message); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
| 92 | + public function checkConstraintParameters(Constraint $constraint) { |
|
| 93 | 93 | $constraintParameters = $constraint->getConstraintParameters(); |
| 94 | 94 | $constraintTypeItemId = $constraint->getConstraintTypeItemId(); |
| 95 | 95 | $exceptions = []; |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | $constraintTypeItemId, |
| 100 | 100 | true |
| 101 | 101 | ); |
| 102 | - } catch ( ConstraintParameterException $e ) { |
|
| 102 | + } catch (ConstraintParameterException $e) { |
|
| 103 | 103 | $exceptions[] = $e; |
| 104 | 104 | } |
| 105 | 105 | return $exceptions; |
@@ -63,9 +63,9 @@ discard block |
||
| 63 | 63 | * |
| 64 | 64 | * @return CheckResult |
| 65 | 65 | */ |
| 66 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
| 67 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
| 68 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_DEPRECATED ); |
|
| 66 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
| 67 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
| 68 | + return new CheckResult($context, $constraint, CheckResult::STATUS_DEPRECATED); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | $separators = $this->constraintParameterParser->parseSeparatorsParameter( |
@@ -74,13 +74,13 @@ discard block |
||
| 74 | 74 | |
| 75 | 75 | $propertyId = $context->getSnak()->getPropertyId(); |
| 76 | 76 | $bestRankCount = $this->valueCountCheckerHelper->getPropertyCount( |
| 77 | - $context->getSnakGroup( Context::GROUP_BEST_RANK, $separators ), |
|
| 77 | + $context->getSnakGroup(Context::GROUP_BEST_RANK, $separators), |
|
| 78 | 78 | $propertyId |
| 79 | 79 | ); |
| 80 | 80 | |
| 81 | - if ( $bestRankCount > 1 ) { |
|
| 81 | + if ($bestRankCount > 1) { |
|
| 82 | 82 | $nonDeprecatedCount = $this->valueCountCheckerHelper->getPropertyCount( |
| 83 | - $context->getSnakGroup( Context::GROUP_NON_DEPRECATED ), |
|
| 83 | + $context->getSnakGroup(Context::GROUP_NON_DEPRECATED), |
|
| 84 | 84 | $propertyId |
| 85 | 85 | ); |
| 86 | 86 | $message = $this->getViolationMessage( |
@@ -95,15 +95,15 @@ discard block |
||
| 95 | 95 | $status = CheckResult::STATUS_COMPLIANCE; |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - return new CheckResult( $context, $constraint, $status, $message ); |
|
| 98 | + return new CheckResult($context, $constraint, $status, $message); |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
| 101 | + public function checkConstraintParameters(Constraint $constraint) { |
|
| 102 | 102 | $constraintParameters = $constraint->getConstraintParameters(); |
| 103 | 103 | $exceptions = []; |
| 104 | 104 | try { |
| 105 | - $this->constraintParameterParser->parseSeparatorsParameter( $constraintParameters ); |
|
| 106 | - } catch ( ConstraintParameterException $e ) { |
|
| 105 | + $this->constraintParameterParser->parseSeparatorsParameter($constraintParameters); |
|
| 106 | + } catch (ConstraintParameterException $e) { |
|
| 107 | 107 | $exceptions[] = $e; |
| 108 | 108 | } |
| 109 | 109 | return $exceptions; |
@@ -122,23 +122,23 @@ discard block |
||
| 122 | 122 | $separators, |
| 123 | 123 | $propertyId |
| 124 | 124 | ) { |
| 125 | - if ( $bestRankCount === $nonDeprecatedCount ) { |
|
| 126 | - if ( $separators === [] ) { |
|
| 125 | + if ($bestRankCount === $nonDeprecatedCount) { |
|
| 126 | + if ($separators === []) { |
|
| 127 | 127 | $messageKey = 'wbqc-violation-message-single-best-value-no-preferred'; |
| 128 | 128 | } else { |
| 129 | 129 | $messageKey = 'wbqc-violation-message-single-best-value-no-preferred-separators'; |
| 130 | 130 | } |
| 131 | 131 | } else { |
| 132 | - if ( $separators === [] ) { |
|
| 132 | + if ($separators === []) { |
|
| 133 | 133 | $messageKey = 'wbqc-violation-message-single-best-value-multi-preferred'; |
| 134 | 134 | } else { |
| 135 | 135 | $messageKey = 'wbqc-violation-message-single-best-value-multi-preferred-separators'; |
| 136 | 136 | } |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | - return ( new ViolationMessage( $messageKey ) ) |
|
| 140 | - ->withEntityId( $propertyId ) |
|
| 141 | - ->withEntityIdList( $separators ); |
|
| 139 | + return (new ViolationMessage($messageKey)) |
|
| 140 | + ->withEntityId($propertyId) |
|
| 141 | + ->withEntityIdList($separators); |
|
| 142 | 142 | } |
| 143 | 143 | |
| 144 | 144 | } |
@@ -88,9 +88,9 @@ discard block |
||
| 88 | 88 | * @throws SparqlHelperException if the checker uses SPARQL and the query times out or some other error occurs |
| 89 | 89 | * @return CheckResult |
| 90 | 90 | */ |
| 91 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
| 92 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
| 93 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_DEPRECATED ); |
|
| 91 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
| 92 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
| 93 | + return new CheckResult($context, $constraint, CheckResult::STATUS_DEPRECATED); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | $constraintParameters = $constraint->getConstraintParameters(); |
@@ -106,18 +106,18 @@ discard block |
||
| 106 | 106 | $constraintTypeItemId |
| 107 | 107 | ); |
| 108 | 108 | $relationIds = []; |
| 109 | - if ( $relation === 'instance' || $relation === 'instanceOrSubclass' ) { |
|
| 110 | - $relationIds[] = $this->config->get( 'WBQualityConstraintsInstanceOfId' ); |
|
| 109 | + if ($relation === 'instance' || $relation === 'instanceOrSubclass') { |
|
| 110 | + $relationIds[] = $this->config->get('WBQualityConstraintsInstanceOfId'); |
|
| 111 | 111 | } |
| 112 | - if ( $relation === 'subclass' || $relation === 'instanceOrSubclass' ) { |
|
| 113 | - $relationIds[] = $this->config->get( 'WBQualityConstraintsSubclassOfId' ); |
|
| 112 | + if ($relation === 'subclass' || $relation === 'instanceOrSubclass') { |
|
| 113 | + $relationIds[] = $this->config->get('WBQualityConstraintsSubclassOfId'); |
|
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | $snak = $context->getSnak(); |
| 117 | 117 | |
| 118 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
| 118 | + if (!$snak instanceof PropertyValueSnak) { |
|
| 119 | 119 | // nothing to check |
| 120 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_COMPLIANCE ); |
|
| 120 | + return new CheckResult($context, $constraint, CheckResult::STATUS_COMPLIANCE); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | $dataValue = $snak->getDataValue(); |
@@ -126,23 +126,23 @@ discard block |
||
| 126 | 126 | * error handling: |
| 127 | 127 | * type of $dataValue for properties with 'Value type' constraint has to be 'wikibase-entityid' |
| 128 | 128 | */ |
| 129 | - if ( !$dataValue instanceof EntityIdValue ) { |
|
| 130 | - $message = ( new ViolationMessage( 'wbqc-violation-message-value-needed-of-type' ) ) |
|
| 131 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
| 132 | - ->withDataValueType( 'wikibase-entityid' ); |
|
| 133 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, $message ); |
|
| 129 | + if (!$dataValue instanceof EntityIdValue) { |
|
| 130 | + $message = (new ViolationMessage('wbqc-violation-message-value-needed-of-type')) |
|
| 131 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
| 132 | + ->withDataValueType('wikibase-entityid'); |
|
| 133 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, $message); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | try { |
| 137 | - $item = $this->entityLookup->getEntity( $dataValue->getEntityId() ); |
|
| 138 | - } catch ( UnresolvedEntityRedirectException $e ) { |
|
| 137 | + $item = $this->entityLookup->getEntity($dataValue->getEntityId()); |
|
| 138 | + } catch (UnresolvedEntityRedirectException $e) { |
|
| 139 | 139 | // Edge case (double redirect): Pretend the entity doesn't exist |
| 140 | 140 | $item = null; |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | - if ( !( $item instanceof StatementListProvidingEntity ) ) { |
|
| 144 | - $message = new ViolationMessage( 'wbqc-violation-message-value-entity-must-exist' ); |
|
| 145 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, $message ); |
|
| 143 | + if (!($item instanceof StatementListProvidingEntity)) { |
|
| 144 | + $message = new ViolationMessage('wbqc-violation-message-value-entity-must-exist'); |
|
| 145 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, $message); |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | $statements = $item->getStatements(); |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | $classes |
| 154 | 154 | ); |
| 155 | 155 | |
| 156 | - if ( $result->getBool() ) { |
|
| 156 | + if ($result->getBool()) { |
|
| 157 | 157 | $message = null; |
| 158 | 158 | $status = CheckResult::STATUS_COMPLIANCE; |
| 159 | 159 | } else { |
@@ -167,11 +167,11 @@ discard block |
||
| 167 | 167 | $status = CheckResult::STATUS_VIOLATION; |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - return ( new CheckResult( $context, $constraint, $status, $message ) ) |
|
| 171 | - ->withMetadata( $result->getMetadata() ); |
|
| 170 | + return (new CheckResult($context, $constraint, $status, $message)) |
|
| 171 | + ->withMetadata($result->getMetadata()); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
| 174 | + public function checkConstraintParameters(Constraint $constraint) { |
|
| 175 | 175 | $constraintParameters = $constraint->getConstraintParameters(); |
| 176 | 176 | $constraintTypeItemId = $constraint->getConstraintTypeItemId(); |
| 177 | 177 | $exceptions = []; |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | $constraintParameters, |
| 181 | 181 | $constraintTypeItemId |
| 182 | 182 | ); |
| 183 | - } catch ( ConstraintParameterException $e ) { |
|
| 183 | + } catch (ConstraintParameterException $e) { |
|
| 184 | 184 | $exceptions[] = $e; |
| 185 | 185 | } |
| 186 | 186 | try { |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | $constraintParameters, |
| 189 | 189 | $constraintTypeItemId |
| 190 | 190 | ); |
| 191 | - } catch ( ConstraintParameterException $e ) { |
|
| 191 | + } catch (ConstraintParameterException $e) { |
|
| 192 | 192 | $exceptions[] = $e; |
| 193 | 193 | } |
| 194 | 194 | return $exceptions; |
@@ -48,9 +48,9 @@ discard block |
||
| 48 | 48 | return self::ALL_ENTITY_TYPES_SUPPORTED; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
| 52 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
| 53 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_DEPRECATED ); |
|
| 51 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
| 52 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
| 53 | + return new CheckResult($context, $constraint, CheckResult::STATUS_DEPRECATED); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | $constraintParameters = $constraint->getConstraintParameters(); |
@@ -59,10 +59,10 @@ discard block |
||
| 59 | 59 | $constraint->getConstraintTypeItemId() |
| 60 | 60 | ); |
| 61 | 61 | |
| 62 | - if ( !in_array( $context->getEntity()->getType(), $entityTypes->getEntityTypes() ) ) { |
|
| 63 | - $message = ( new ViolationMessage( 'wbqc-violation-message-entityType' ) ) |
|
| 64 | - ->withEntityId( $context->getSnak()->getPropertyId(), Role::CONSTRAINT_PROPERTY ) |
|
| 65 | - ->withEntityIdList( $entityTypes->getEntityTypeItemIds(), Role::CONSTRAINT_PARAMETER_VALUE ); |
|
| 62 | + if (!in_array($context->getEntity()->getType(), $entityTypes->getEntityTypes())) { |
|
| 63 | + $message = (new ViolationMessage('wbqc-violation-message-entityType')) |
|
| 64 | + ->withEntityId($context->getSnak()->getPropertyId(), Role::CONSTRAINT_PROPERTY) |
|
| 65 | + ->withEntityIdList($entityTypes->getEntityTypeItemIds(), Role::CONSTRAINT_PARAMETER_VALUE); |
|
| 66 | 66 | |
| 67 | 67 | return new CheckResult( |
| 68 | 68 | $context, |
@@ -72,10 +72,10 @@ discard block |
||
| 72 | 72 | ); |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_COMPLIANCE ); |
|
| 75 | + return new CheckResult($context, $constraint, CheckResult::STATUS_COMPLIANCE); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
| 78 | + public function checkConstraintParameters(Constraint $constraint) { |
|
| 79 | 79 | $constraintParameters = $constraint->getConstraintParameters(); |
| 80 | 80 | $exceptions = []; |
| 81 | 81 | try { |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | $constraintParameters, |
| 84 | 84 | $constraint->getConstraintTypeItemId() |
| 85 | 85 | ); |
| 86 | - } catch ( ConstraintParameterException $e ) { |
|
| 86 | + } catch (ConstraintParameterException $e) { |
|
| 87 | 87 | $exceptions[] = $e; |
| 88 | 88 | } |
| 89 | 89 | return $exceptions; |
@@ -62,9 +62,9 @@ discard block |
||
| 62 | 62 | * |
| 63 | 63 | * @return CheckResult |
| 64 | 64 | */ |
| 65 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
| 66 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
| 67 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_DEPRECATED ); |
|
| 65 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
| 66 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
| 67 | + return new CheckResult($context, $constraint, CheckResult::STATUS_DEPRECATED); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | $separators = $this->constraintParameterParser->parseSeparatorsParameter( |
@@ -73,33 +73,32 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | $propertyId = $context->getSnak()->getPropertyId(); |
| 75 | 75 | $propertyCount = $this->valueCountCheckerHelper->getPropertyCount( |
| 76 | - $context->getSnakGroup( Context::GROUP_NON_DEPRECATED, $separators ), |
|
| 76 | + $context->getSnakGroup(Context::GROUP_NON_DEPRECATED, $separators), |
|
| 77 | 77 | $propertyId |
| 78 | 78 | ); |
| 79 | 79 | |
| 80 | - if ( $propertyCount <= 1 ) { |
|
| 81 | - $message = ( new ViolationMessage( |
|
| 80 | + if ($propertyCount <= 1) { |
|
| 81 | + $message = (new ViolationMessage( |
|
| 82 | 82 | $separators === [] ? |
| 83 | - 'wbqc-violation-message-multi-value' : |
|
| 84 | - 'wbqc-violation-message-multi-value-separators' |
|
| 85 | - ) ) |
|
| 86 | - ->withEntityId( $propertyId ) |
|
| 87 | - ->withEntityIdList( $separators ); |
|
| 83 | + 'wbqc-violation-message-multi-value' : 'wbqc-violation-message-multi-value-separators' |
|
| 84 | + )) |
|
| 85 | + ->withEntityId($propertyId) |
|
| 86 | + ->withEntityIdList($separators); |
|
| 88 | 87 | $status = CheckResult::STATUS_VIOLATION; |
| 89 | 88 | } else { |
| 90 | 89 | $message = null; |
| 91 | 90 | $status = CheckResult::STATUS_COMPLIANCE; |
| 92 | 91 | } |
| 93 | 92 | |
| 94 | - return new CheckResult( $context, $constraint, $status, $message ); |
|
| 93 | + return new CheckResult($context, $constraint, $status, $message); |
|
| 95 | 94 | } |
| 96 | 95 | |
| 97 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
| 96 | + public function checkConstraintParameters(Constraint $constraint) { |
|
| 98 | 97 | $constraintParameters = $constraint->getConstraintParameters(); |
| 99 | 98 | $exceptions = []; |
| 100 | 99 | try { |
| 101 | - $this->constraintParameterParser->parseSeparatorsParameter( $constraintParameters ); |
|
| 102 | - } catch ( ConstraintParameterException $e ) { |
|
| 100 | + $this->constraintParameterParser->parseSeparatorsParameter($constraintParameters); |
|
| 101 | + } catch (ConstraintParameterException $e) { |
|
| 103 | 102 | $exceptions[] = $e; |
| 104 | 103 | } |
| 105 | 104 | return $exceptions; |
@@ -76,9 +76,9 @@ discard block |
||
| 76 | 76 | * @throws ConstraintParameterException |
| 77 | 77 | * @return CheckResult |
| 78 | 78 | */ |
| 79 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
| 80 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
| 81 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_DEPRECATED ); |
|
| 79 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
| 80 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
| 81 | + return new CheckResult($context, $constraint, CheckResult::STATUS_DEPRECATED); |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | $constraintParameters = $constraint->getConstraintParameters(); |
@@ -90,50 +90,50 @@ discard block |
||
| 90 | 90 | true |
| 91 | 91 | ); |
| 92 | 92 | |
| 93 | - $message = ( new ViolationMessage( 'wbqc-violation-message-language' ) ) |
|
| 94 | - ->withEntityId( $context->getSnak()->getPropertyId(), Role::PREDICATE ) |
|
| 95 | - ->withItemIdSnakValueList( $languages, Role::OBJECT ); |
|
| 93 | + $message = (new ViolationMessage('wbqc-violation-message-language')) |
|
| 94 | + ->withEntityId($context->getSnak()->getPropertyId(), Role::PREDICATE) |
|
| 95 | + ->withItemIdSnakValueList($languages, Role::OBJECT); |
|
| 96 | 96 | $status = CheckResult::STATUS_VIOLATION; |
| 97 | 97 | |
| 98 | - $lexeme = $this->getLexeme( $context ); |
|
| 99 | - if ( !$lexeme ) { |
|
| 98 | + $lexeme = $this->getLexeme($context); |
|
| 99 | + if (!$lexeme) { |
|
| 100 | 100 | // Lexeme doesn't exist, let's not bother |
| 101 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_NOT_IN_SCOPE ); |
|
| 101 | + return new CheckResult($context, $constraint, CheckResult::STATUS_NOT_IN_SCOPE); |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | /** @var Lexeme $lexeme */ |
| 105 | 105 | '@phan-var Lexeme $lexeme'; |
| 106 | 106 | |
| 107 | - foreach ( $languages as $language ) { |
|
| 108 | - if ( $language->isNoValue() || $language->isSomeValue() ) { |
|
| 107 | + foreach ($languages as $language) { |
|
| 108 | + if ($language->isNoValue() || $language->isSomeValue()) { |
|
| 109 | 109 | continue; |
| 110 | 110 | } |
| 111 | - if ( $lexeme->getLanguage()->equals( $language->getItemId() ) ) { |
|
| 111 | + if ($lexeme->getLanguage()->equals($language->getItemId())) { |
|
| 112 | 112 | $message = null; |
| 113 | 113 | $status = CheckResult::STATUS_COMPLIANCE; |
| 114 | 114 | break; |
| 115 | 115 | } |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - return new CheckResult( $context, $constraint, $status, $message ); |
|
| 118 | + return new CheckResult($context, $constraint, $status, $message); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - private function getLexeme( Context $context ): ?EntityDocument { |
|
| 121 | + private function getLexeme(Context $context): ?EntityDocument { |
|
| 122 | 122 | $entityType = $context->getEntity()->getType(); |
| 123 | 123 | |
| 124 | - if ( $entityType === Lexeme::ENTITY_TYPE ) { |
|
| 124 | + if ($entityType === Lexeme::ENTITY_TYPE) { |
|
| 125 | 125 | return $context->getEntity(); |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - if ( in_array( $entityType, [ Form::ENTITY_TYPE, Sense::ENTITY_TYPE ] ) ) { |
|
| 128 | + if (in_array($entityType, [Form::ENTITY_TYPE, Sense::ENTITY_TYPE])) { |
|
| 129 | 129 | /** @var LexemeSubEntityId $id */ |
| 130 | 130 | $id = $context->getEntity()->getId(); |
| 131 | 131 | '@phan-var LexemeSubEntityId $id'; |
| 132 | - return $this->entityLookup->getEntity( $id->getLexemeId() ); |
|
| 132 | + return $this->entityLookup->getEntity($id->getLexemeId()); |
|
| 133 | 133 | } |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - public function checkConstraintParameters( Constraint $constraint ): array { |
|
| 136 | + public function checkConstraintParameters(Constraint $constraint): array { |
|
| 137 | 137 | $constraintParameters = $constraint->getConstraintParameters(); |
| 138 | 138 | $constraintTypeItemId = $constraint->getConstraintTypeItemId(); |
| 139 | 139 | $exceptions = []; |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | $constraintTypeItemId, |
| 144 | 144 | true |
| 145 | 145 | ); |
| 146 | - } catch ( ConstraintParameterException $e ) { |
|
| 146 | + } catch (ConstraintParameterException $e) { |
|
| 147 | 147 | $exceptions[] = $e; |
| 148 | 148 | } |
| 149 | 149 | return $exceptions; |
@@ -75,12 +75,12 @@ discard block |
||
| 75 | 75 | * @throws SparqlHelperException if the checker uses SPARQL and the query times out or some other error occurs |
| 76 | 76 | * @return CheckResult |
| 77 | 77 | */ |
| 78 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
| 79 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
| 80 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_DEPRECATED ); |
|
| 78 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
| 79 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
| 80 | + return new CheckResult($context, $constraint, CheckResult::STATUS_DEPRECATED); |
|
| 81 | 81 | } |
| 82 | - if ( $context->getType() === Context::TYPE_REFERENCE ) { |
|
| 83 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_NOT_IN_SCOPE ); |
|
| 82 | + if ($context->getType() === Context::TYPE_REFERENCE) { |
|
| 83 | + return new CheckResult($context, $constraint, CheckResult::STATUS_NOT_IN_SCOPE); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | $constraintParameters = $constraint->getConstraintParameters(); |
@@ -96,11 +96,11 @@ discard block |
||
| 96 | 96 | $constraintTypeItemId |
| 97 | 97 | ); |
| 98 | 98 | $relationIds = []; |
| 99 | - if ( $relation === 'instance' || $relation === 'instanceOrSubclass' ) { |
|
| 100 | - $relationIds[] = $this->config->get( 'WBQualityConstraintsInstanceOfId' ); |
|
| 99 | + if ($relation === 'instance' || $relation === 'instanceOrSubclass') { |
|
| 100 | + $relationIds[] = $this->config->get('WBQualityConstraintsInstanceOfId'); |
|
| 101 | 101 | } |
| 102 | - if ( $relation === 'subclass' || $relation === 'instanceOrSubclass' ) { |
|
| 103 | - $relationIds[] = $this->config->get( 'WBQualityConstraintsSubclassOfId' ); |
|
| 102 | + if ($relation === 'subclass' || $relation === 'instanceOrSubclass') { |
|
| 103 | + $relationIds[] = $this->config->get('WBQualityConstraintsSubclassOfId'); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | $result = $this->typeCheckerHelper->hasClassInRelation( |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | $classes |
| 110 | 110 | ); |
| 111 | 111 | |
| 112 | - if ( $result->getBool() ) { |
|
| 112 | + if ($result->getBool()) { |
|
| 113 | 113 | $message = null; |
| 114 | 114 | $status = CheckResult::STATUS_COMPLIANCE; |
| 115 | 115 | } else { |
@@ -123,11 +123,11 @@ discard block |
||
| 123 | 123 | $status = CheckResult::STATUS_VIOLATION; |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - return ( new CheckResult( $context, $constraint, $status, $message ) ) |
|
| 127 | - ->withMetadata( $result->getMetadata() ); |
|
| 126 | + return (new CheckResult($context, $constraint, $status, $message)) |
|
| 127 | + ->withMetadata($result->getMetadata()); |
|
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
| 130 | + public function checkConstraintParameters(Constraint $constraint) { |
|
| 131 | 131 | $constraintParameters = $constraint->getConstraintParameters(); |
| 132 | 132 | $constraintTypeItemId = $constraint->getConstraintTypeItemId(); |
| 133 | 133 | $exceptions = []; |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | $constraintParameters, |
| 137 | 137 | $constraintTypeItemId |
| 138 | 138 | ); |
| 139 | - } catch ( ConstraintParameterException $e ) { |
|
| 139 | + } catch (ConstraintParameterException $e) { |
|
| 140 | 140 | $exceptions[] = $e; |
| 141 | 141 | } |
| 142 | 142 | try { |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | $constraintParameters, |
| 145 | 145 | $constraintTypeItemId |
| 146 | 146 | ); |
| 147 | - } catch ( ConstraintParameterException $e ) { |
|
| 147 | + } catch (ConstraintParameterException $e) { |
|
| 148 | 148 | $exceptions[] = $e; |
| 149 | 149 | } |
| 150 | 150 | return $exceptions; |
@@ -33,16 +33,16 @@ |
||
| 33 | 33 | return self::ALL_ENTITY_TYPES_SUPPORTED; |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
| 37 | - if ( $context->getType() === Context::TYPE_STATEMENT ) { |
|
| 38 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_COMPLIANCE ); |
|
| 36 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
| 37 | + if ($context->getType() === Context::TYPE_STATEMENT) { |
|
| 38 | + return new CheckResult($context, $constraint, CheckResult::STATUS_COMPLIANCE); |
|
| 39 | 39 | } else { |
| 40 | - $message = new ViolationMessage( 'wbqc-violation-message-valueOnly' ); |
|
| 41 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, $message ); |
|
| 40 | + $message = new ViolationMessage('wbqc-violation-message-valueOnly'); |
|
| 41 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, $message); |
|
| 42 | 42 | } |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
| 45 | + public function checkConstraintParameters(Constraint $constraint) { |
|
| 46 | 46 | // no parameters |
| 47 | 47 | return []; |
| 48 | 48 | } |
@@ -79,17 +79,17 @@ discard block |
||
| 79 | 79 | * |
| 80 | 80 | * @return CheckResult |
| 81 | 81 | */ |
| 82 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
| 83 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
| 84 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_DEPRECATED ); |
|
| 82 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
| 83 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
| 84 | + return new CheckResult($context, $constraint, CheckResult::STATUS_DEPRECATED); |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | $snak = $context->getSnak(); |
| 88 | 88 | $propertyId = $context->getSnak()->getPropertyId(); |
| 89 | 89 | |
| 90 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
| 90 | + if (!$snak instanceof PropertyValueSnak) { |
|
| 91 | 91 | // nothing to check |
| 92 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_COMPLIANCE ); |
|
| 92 | + return new CheckResult($context, $constraint, CheckResult::STATUS_COMPLIANCE); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | $dataValue = $snak->getDataValue(); |
@@ -98,18 +98,18 @@ discard block |
||
| 98 | 98 | * error handling: |
| 99 | 99 | * type of $dataValue for properties with 'Symmetric' constraint has to be 'wikibase-entityid' |
| 100 | 100 | */ |
| 101 | - if ( !$dataValue instanceof EntityIdValue ) { |
|
| 102 | - $message = ( new ViolationMessage( 'wbqc-violation-message-value-needed-of-type' ) ) |
|
| 103 | - ->withEntityId( new ItemId( $constraint->getConstraintTypeItemId() ), Role::CONSTRAINT_TYPE_ITEM ) |
|
| 104 | - ->withDataValueType( 'wikibase-entityid' ); |
|
| 105 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, $message ); |
|
| 101 | + if (!$dataValue instanceof EntityIdValue) { |
|
| 102 | + $message = (new ViolationMessage('wbqc-violation-message-value-needed-of-type')) |
|
| 103 | + ->withEntityId(new ItemId($constraint->getConstraintTypeItemId()), Role::CONSTRAINT_TYPE_ITEM) |
|
| 104 | + ->withDataValueType('wikibase-entityid'); |
|
| 105 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, $message); |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | $targetEntityId = $dataValue->getEntityId(); |
| 109 | - $targetEntity = $this->entityLookup->getEntity( $targetEntityId ); |
|
| 110 | - if ( !$targetEntity instanceof StatementListProvider ) { |
|
| 111 | - $message = new ViolationMessage( 'wbqc-violation-message-target-entity-must-exist' ); |
|
| 112 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, $message ); |
|
| 109 | + $targetEntity = $this->entityLookup->getEntity($targetEntityId); |
|
| 110 | + if (!$targetEntity instanceof StatementListProvider) { |
|
| 111 | + $message = new ViolationMessage('wbqc-violation-message-target-entity-must-exist'); |
|
| 112 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, $message); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | $symmetricStatement = $this->connectionCheckerHelper->findStatementWithPropertyAndEntityIdValue( |
@@ -117,23 +117,23 @@ discard block |
||
| 117 | 117 | $propertyId, |
| 118 | 118 | $context->getEntity()->getId() |
| 119 | 119 | ); |
| 120 | - if ( $symmetricStatement !== null ) { |
|
| 120 | + if ($symmetricStatement !== null) { |
|
| 121 | 121 | $message = null; |
| 122 | 122 | $status = CheckResult::STATUS_COMPLIANCE; |
| 123 | 123 | } else { |
| 124 | - $message = ( new ViolationMessage( 'wbqc-violation-message-symmetric' ) ) |
|
| 125 | - ->withEntityId( $targetEntityId, Role::SUBJECT ) |
|
| 126 | - ->withEntityId( $propertyId, Role::PREDICATE ) |
|
| 127 | - ->withEntityId( $context->getEntity()->getId(), Role::OBJECT ); |
|
| 124 | + $message = (new ViolationMessage('wbqc-violation-message-symmetric')) |
|
| 125 | + ->withEntityId($targetEntityId, Role::SUBJECT) |
|
| 126 | + ->withEntityId($propertyId, Role::PREDICATE) |
|
| 127 | + ->withEntityId($context->getEntity()->getId(), Role::OBJECT); |
|
| 128 | 128 | $status = CheckResult::STATUS_VIOLATION; |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | - return ( new CheckResult( $context, $constraint, $status, $message ) ) |
|
| 132 | - ->withMetadata( Metadata::ofDependencyMetadata( |
|
| 133 | - DependencyMetadata::ofEntityId( $targetEntityId ) ) ); |
|
| 131 | + return (new CheckResult($context, $constraint, $status, $message)) |
|
| 132 | + ->withMetadata(Metadata::ofDependencyMetadata( |
|
| 133 | + DependencyMetadata::ofEntityId($targetEntityId) )); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
| 136 | + public function checkConstraintParameters(Constraint $constraint) { |
|
| 137 | 137 | // no parameters |
| 138 | 138 | return []; |
| 139 | 139 | } |