@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Result; |
6 | 6 | |
@@ -27,22 +27,22 @@ discard block |
||
27 | 27 | */ |
28 | 28 | private const NULL_PROPERTY_ID = 'P2147483647'; |
29 | 29 | |
30 | - public function __construct( ContextCursor $contextCursor ) { |
|
30 | + public function __construct(ContextCursor $contextCursor) { |
|
31 | 31 | $constraint = new Constraint( |
32 | 32 | 'null', |
33 | - new NumericPropertyId( self::NULL_PROPERTY_ID ), |
|
33 | + new NumericPropertyId(self::NULL_PROPERTY_ID), |
|
34 | 34 | 'none', |
35 | 35 | [] |
36 | 36 | ); |
37 | - parent::__construct( $contextCursor, $constraint ); |
|
37 | + parent::__construct($contextCursor, $constraint); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | public function getConstraint(): Constraint { |
41 | - throw new DomainException( 'NullResult holds no constraint' ); |
|
41 | + throw new DomainException('NullResult holds no constraint'); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | public function getConstraintId(): string { |
45 | - throw new DomainException( 'NullResult holds no constraint' ); |
|
45 | + throw new DomainException('NullResult holds no constraint'); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Message; |
6 | 6 | |
@@ -43,12 +43,12 @@ discard block |
||
43 | 43 | ): ViolationMessageRenderer { |
44 | 44 | $userLanguageCode = $userLanguage->getCode(); |
45 | 45 | $formatterOptions = new FormatterOptions(); |
46 | - $formatterOptions->setOption( SnakFormatter::OPT_LANG, $userLanguageCode ); |
|
46 | + $formatterOptions->setOption(SnakFormatter::OPT_LANG, $userLanguageCode); |
|
47 | 47 | return new MultilingualTextViolationMessageRenderer( |
48 | 48 | $this->entityIdHtmlLinkFormatterFactory |
49 | - ->getEntityIdFormatter( $userLanguage ), |
|
49 | + ->getEntityIdFormatter($userLanguage), |
|
50 | 50 | $this->valueFormatterFactory |
51 | - ->getValueFormatter( SnakFormatter::FORMAT_HTML, $formatterOptions ), |
|
51 | + ->getValueFormatter(SnakFormatter::FORMAT_HTML, $formatterOptions), |
|
52 | 52 | $this->languageNameUtils, |
53 | 53 | $userLanguageCode, |
54 | 54 | $languageFallbackChain, |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * @param WANObjectCache $cache |
37 | 37 | * @param string $formatVersion The version of the API response format. |
38 | 38 | */ |
39 | - public function __construct( WANObjectCache $cache, $formatVersion ) { |
|
39 | + public function __construct(WANObjectCache $cache, $formatVersion) { |
|
40 | 40 | $this->cache = $cache; |
41 | 41 | $this->formatVersion = $formatVersion; |
42 | 42 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * @param EntityId $entityId |
46 | 46 | * @return string cache key |
47 | 47 | */ |
48 | - public function makeKey( EntityId $entityId ) { |
|
48 | + public function makeKey(EntityId $entityId) { |
|
49 | 49 | return $this->cache->makeKey( |
50 | 50 | 'WikibaseQualityConstraints', // extension |
51 | 51 | 'checkConstraints', // action |
@@ -61,8 +61,8 @@ discard block |
||
61 | 61 | * @param array &$info |
62 | 62 | * @return mixed |
63 | 63 | */ |
64 | - public function get( EntityId $key, &$curTTL = null, array $checkKeys = [], array &$info = [] ) { |
|
65 | - return $this->cache->get( $this->makeKey( $key ), $curTTL, $checkKeys, $info ); |
|
64 | + public function get(EntityId $key, &$curTTL = null, array $checkKeys = [], array &$info = []) { |
|
65 | + return $this->cache->get($this->makeKey($key), $curTTL, $checkKeys, $info); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
@@ -72,16 +72,16 @@ discard block |
||
72 | 72 | * @param array $opts |
73 | 73 | * @return bool |
74 | 74 | */ |
75 | - public function set( EntityId $key, $value, $ttl = 0, array $opts = [] ) { |
|
76 | - return $this->cache->set( $this->makeKey( $key ), $value, $ttl, $opts ); |
|
75 | + public function set(EntityId $key, $value, $ttl = 0, array $opts = []) { |
|
76 | + return $this->cache->set($this->makeKey($key), $value, $ttl, $opts); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
80 | 80 | * @param EntityId $key |
81 | 81 | * @return bool |
82 | 82 | */ |
83 | - public function delete( EntityId $key ) { |
|
84 | - return $this->cache->delete( $this->makeKey( $key ) ); |
|
83 | + public function delete(EntityId $key) { |
|
84 | + return $this->cache->delete($this->makeKey($key)); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WikibaseQuality\ConstraintReport\Api; |
6 | 6 | |
@@ -37,12 +37,12 @@ discard block |
||
37 | 37 | Language $userLanguage, |
38 | 38 | MessageLocalizer $messageLocalizer |
39 | 39 | ): CheckResultsRenderer { |
40 | - $languageFallbackChain = $this->languageFallbackChainFactory->newFromLanguage( $userLanguage ); |
|
40 | + $languageFallbackChain = $this->languageFallbackChainFactory->newFromLanguage($userLanguage); |
|
41 | 41 | |
42 | 42 | return new CheckResultsRenderer( |
43 | 43 | $this->entityTitleLookup, |
44 | 44 | $this->entityIdLabelFormatterFactory |
45 | - ->getEntityIdFormatter( $userLanguage ), |
|
45 | + ->getEntityIdFormatter($userLanguage), |
|
46 | 46 | $languageFallbackChain, |
47 | 47 | $this->violationMessageRendererFactory |
48 | 48 | ->getViolationMessageRenderer( |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Result; |
6 | 6 | |
@@ -60,14 +60,14 @@ discard block |
||
60 | 60 | $this->serializeDependencyMetadata = $serializeDependencyMetadata; |
61 | 61 | } |
62 | 62 | |
63 | - public function serialize( CheckResult $checkResult ): array { |
|
63 | + public function serialize(CheckResult $checkResult): array { |
|
64 | 64 | $contextCursor = $checkResult->getContextCursor(); |
65 | 65 | |
66 | 66 | $serialization = [ |
67 | - self::KEY_CONTEXT_CURSOR => $this->contextCursorSerializer->serialize( $contextCursor ), |
|
67 | + self::KEY_CONTEXT_CURSOR => $this->contextCursorSerializer->serialize($contextCursor), |
|
68 | 68 | ]; |
69 | 69 | |
70 | - if ( $checkResult instanceof NullResult ) { |
|
70 | + if ($checkResult instanceof NullResult) { |
|
71 | 71 | $serialization[self::KEY_NULL_RESULT] = 1; |
72 | 72 | } else { |
73 | 73 | $constraint = $checkResult->getConstraint(); |
@@ -76,57 +76,57 @@ discard block |
||
76 | 76 | $clarification = $checkResult->getConstraintClarification(); |
77 | 77 | |
78 | 78 | $serialization[self::KEY_CONSTRAINT] = |
79 | - $this->constraintSerializer->serialize( $constraint ); |
|
79 | + $this->constraintSerializer->serialize($constraint); |
|
80 | 80 | $serialization[self::KEY_CHECK_RESULT_STATUS] = |
81 | 81 | $checkResult->getStatus(); |
82 | 82 | $serialization[self::KEY_CACHING_METADATA] = |
83 | - $this->serializeCachingMetadata( $cachingMetadata ); |
|
83 | + $this->serializeCachingMetadata($cachingMetadata); |
|
84 | 84 | |
85 | - if ( $violationMessage !== null ) { |
|
85 | + if ($violationMessage !== null) { |
|
86 | 86 | $serialization[self::KEY_VIOLATION_MESSAGE] = |
87 | - $this->violationMessageSerializer->serialize( $violationMessage ); |
|
87 | + $this->violationMessageSerializer->serialize($violationMessage); |
|
88 | 88 | } |
89 | - if ( $clarification->getTexts() !== [] ) { |
|
89 | + if ($clarification->getTexts() !== []) { |
|
90 | 90 | $serialization[self::KEY_CONSTRAINT_CLARIFICATION] = |
91 | 91 | $clarification->getArrayValue(); |
92 | 92 | } |
93 | 93 | } |
94 | 94 | |
95 | - if ( $this->serializeDependencyMetadata ) { |
|
95 | + if ($this->serializeDependencyMetadata) { |
|
96 | 96 | $serialization[self::KEY_DEPENDENCY_METADATA] = |
97 | - $this->serializeDependencyMetadata( $checkResult ); |
|
97 | + $this->serializeDependencyMetadata($checkResult); |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | return $serialization; |
101 | 101 | } |
102 | 102 | |
103 | - private function serializeCachingMetadata( CachingMetadata $cachingMetadata ): array { |
|
103 | + private function serializeCachingMetadata(CachingMetadata $cachingMetadata): array { |
|
104 | 104 | $maximumAge = $cachingMetadata->getMaximumAgeInSeconds(); |
105 | 105 | |
106 | 106 | $serialization = []; |
107 | 107 | |
108 | - if ( $maximumAge > 0 ) { |
|
108 | + if ($maximumAge > 0) { |
|
109 | 109 | $serialization[self::KEY_CACHING_METADATA_MAX_AGE] = $maximumAge; |
110 | 110 | } |
111 | 111 | |
112 | 112 | return $serialization; |
113 | 113 | } |
114 | 114 | |
115 | - private function serializeDependencyMetadata( CheckResult $checkResult ): array { |
|
115 | + private function serializeDependencyMetadata(CheckResult $checkResult): array { |
|
116 | 116 | $dependencyMetadata = $checkResult->getMetadata()->getDependencyMetadata(); |
117 | 117 | $entityIds = $dependencyMetadata->getEntityIds(); |
118 | 118 | $futureTime = $dependencyMetadata->getFutureTime(); |
119 | 119 | |
120 | 120 | $serialization = [ |
121 | 121 | self::KEY_DEPENDENCY_METADATA_ENTITY_IDS => array_map( |
122 | - static function ( EntityId $entityId ) { |
|
122 | + static function(EntityId $entityId) { |
|
123 | 123 | return $entityId->getSerialization(); |
124 | 124 | }, |
125 | 125 | $entityIds |
126 | 126 | ), |
127 | 127 | ]; |
128 | 128 | |
129 | - if ( $futureTime !== null ) { |
|
129 | + if ($futureTime !== null) { |
|
130 | 130 | $serialization[self::KEY_DEPENDENCY_METADATA_FUTURE_TIME] = |
131 | 131 | $futureTime->getArrayValue(); |
132 | 132 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WikibaseQuality\ConstraintReport\Api; |
6 | 6 | |
@@ -41,11 +41,11 @@ discard block |
||
41 | 41 | $this->violationMessageRenderer = $violationMessageRenderer; |
42 | 42 | } |
43 | 43 | |
44 | - public function render( CachedCheckResults $checkResults ): CachedCheckConstraintsResponse { |
|
44 | + public function render(CachedCheckResults $checkResults): CachedCheckConstraintsResponse { |
|
45 | 45 | $response = []; |
46 | - foreach ( $checkResults->getArray() as $checkResult ) { |
|
47 | - $resultArray = $this->checkResultToArray( $checkResult ); |
|
48 | - $checkResult->getContextCursor()->storeCheckResultInArray( $resultArray, $response ); |
|
46 | + foreach ($checkResults->getArray() as $checkResult) { |
|
47 | + $resultArray = $this->checkResultToArray($checkResult); |
|
48 | + $checkResult->getContextCursor()->storeCheckResultInArray($resultArray, $response); |
|
49 | 49 | } |
50 | 50 | return new CachedCheckConstraintsResponse( |
51 | 51 | $response, |
@@ -53,19 +53,19 @@ discard block |
||
53 | 53 | ); |
54 | 54 | } |
55 | 55 | |
56 | - public function checkResultToArray( CheckResult $checkResult ): ?array { |
|
57 | - if ( $checkResult instanceof NullResult ) { |
|
56 | + public function checkResultToArray(CheckResult $checkResult): ?array { |
|
57 | + if ($checkResult instanceof NullResult) { |
|
58 | 58 | return null; |
59 | 59 | } |
60 | 60 | |
61 | 61 | $constraintId = $checkResult->getConstraint()->getConstraintId(); |
62 | 62 | $typeItemId = $checkResult->getConstraint()->getConstraintTypeItemId(); |
63 | - $constraintPropertyId = new NumericPropertyId( $checkResult->getContextCursor()->getSnakPropertyId() ); |
|
63 | + $constraintPropertyId = new NumericPropertyId($checkResult->getContextCursor()->getSnakPropertyId()); |
|
64 | 64 | |
65 | - $title = $this->entityTitleLookup->getTitleForId( $constraintPropertyId ); |
|
65 | + $title = $this->entityTitleLookup->getTitleForId($constraintPropertyId); |
|
66 | 66 | $talkTitle = $title->getTalkPageIfDefined(); |
67 | - $typeLabel = $this->entityIdLabelFormatter->formatEntityId( new ItemId( $typeItemId ) ); |
|
68 | - $link = $title->getFullURL() . '#' . $constraintId; |
|
67 | + $typeLabel = $this->entityIdLabelFormatter->formatEntityId(new ItemId($typeItemId)); |
|
68 | + $link = $title->getFullURL().'#'.$constraintId; |
|
69 | 69 | |
70 | 70 | $constraint = [ |
71 | 71 | 'id' => $constraintId, |
@@ -81,28 +81,28 @@ discard block |
||
81 | 81 | 'constraint' => $constraint, |
82 | 82 | ]; |
83 | 83 | $message = $checkResult->getMessage(); |
84 | - if ( $message ) { |
|
85 | - $result['message-html'] = $this->violationMessageRenderer->render( $message ); |
|
84 | + if ($message) { |
|
85 | + $result['message-html'] = $this->violationMessageRenderer->render($message); |
|
86 | 86 | } |
87 | - $constraintClarification = $this->renderConstraintClarification( $checkResult ); |
|
88 | - if ( $constraintClarification !== null ) { |
|
87 | + $constraintClarification = $this->renderConstraintClarification($checkResult); |
|
88 | + if ($constraintClarification !== null) { |
|
89 | 89 | $result['constraint-clarification'] = $constraintClarification; |
90 | 90 | } |
91 | - if ( $checkResult->getContextCursor()->getType() === Context::TYPE_STATEMENT ) { |
|
91 | + if ($checkResult->getContextCursor()->getType() === Context::TYPE_STATEMENT) { |
|
92 | 92 | $result['claim'] = $checkResult->getContextCursor()->getStatementGuid(); |
93 | 93 | } |
94 | 94 | $cachingMetadataArray = $checkResult->getMetadata()->getCachingMetadata()->toArray(); |
95 | - if ( $cachingMetadataArray !== null ) { |
|
95 | + if ($cachingMetadataArray !== null) { |
|
96 | 96 | $result['cached'] = $cachingMetadataArray; |
97 | 97 | } |
98 | 98 | |
99 | 99 | return $result; |
100 | 100 | } |
101 | 101 | |
102 | - private function renderConstraintClarification( CheckResult $result ): ?string { |
|
102 | + private function renderConstraintClarification(CheckResult $result): ?string { |
|
103 | 103 | $texts = $result->getConstraintClarification()->getTexts(); |
104 | - foreach ( $this->languageFallbackChain->getFetchLanguageCodes() as $languageCode ) { |
|
105 | - if ( array_key_exists( $languageCode, $texts ) ) { |
|
104 | + foreach ($this->languageFallbackChain->getFetchLanguageCodes() as $languageCode) { |
|
105 | + if (array_key_exists($languageCode, $texts)) { |
|
106 | 106 | return $texts[$languageCode]->getText(); |
107 | 107 | } |
108 | 108 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Result; |
6 | 6 | |
@@ -40,13 +40,13 @@ discard block |
||
40 | 40 | $this->entityIdParser = $entityIdParser; |
41 | 41 | } |
42 | 42 | |
43 | - public function deserialize( array $serialization ): CheckResult { |
|
43 | + public function deserialize(array $serialization): CheckResult { |
|
44 | 44 | $contextCursor = $this->contextCursorDeserializer->deserialize( |
45 | 45 | $serialization[CheckResultSerializer::KEY_CONTEXT_CURSOR] |
46 | 46 | ); |
47 | 47 | |
48 | - if ( array_key_exists( CheckResultSerializer::KEY_NULL_RESULT, $serialization ) ) { |
|
49 | - $result = new NullResult( $contextCursor ); |
|
48 | + if (array_key_exists(CheckResultSerializer::KEY_NULL_RESULT, $serialization)) { |
|
49 | + $result = new NullResult($contextCursor); |
|
50 | 50 | $cachingMetadata = CachingMetadata::fresh(); |
51 | 51 | } else { |
52 | 52 | $constraint = $this->constraintDeserializer->deserialize( |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | $status = $serialization[CheckResultSerializer::KEY_CHECK_RESULT_STATUS]; |
59 | 59 | |
60 | - $violationMessage = $this->getViolationMessageFromSerialization( $serialization ); |
|
60 | + $violationMessage = $this->getViolationMessageFromSerialization($serialization); |
|
61 | 61 | |
62 | 62 | $result = new CheckResult( |
63 | 63 | $contextCursor, |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | ); |
69 | 69 | |
70 | 70 | $result->setConstraintClarification( |
71 | - $this->getConstraintClarificationFromSerialization( $serialization ) |
|
71 | + $this->getConstraintClarificationFromSerialization($serialization) |
|
72 | 72 | ); |
73 | 73 | |
74 | 74 | $cachingMetadata = $this->deserializeCachingMetadata( |
@@ -76,18 +76,18 @@ discard block |
||
76 | 76 | ); |
77 | 77 | } |
78 | 78 | |
79 | - $dependencyMetadata = $this->getDependencyMetadataFromSerialization( $serialization ); |
|
79 | + $dependencyMetadata = $this->getDependencyMetadataFromSerialization($serialization); |
|
80 | 80 | |
81 | 81 | return $result->withMetadata( |
82 | - Metadata::merge( [ |
|
83 | - Metadata::ofCachingMetadata( $cachingMetadata ), |
|
84 | - Metadata::ofDependencyMetadata( $dependencyMetadata ), |
|
85 | - ] ) |
|
82 | + Metadata::merge([ |
|
83 | + Metadata::ofCachingMetadata($cachingMetadata), |
|
84 | + Metadata::ofDependencyMetadata($dependencyMetadata), |
|
85 | + ]) |
|
86 | 86 | ); |
87 | 87 | } |
88 | 88 | |
89 | - private function getViolationMessageFromSerialization( array $serialization ): ?ViolationMessage { |
|
90 | - if ( array_key_exists( CheckResultSerializer::KEY_VIOLATION_MESSAGE, $serialization ) ) { |
|
89 | + private function getViolationMessageFromSerialization(array $serialization): ?ViolationMessage { |
|
90 | + if (array_key_exists(CheckResultSerializer::KEY_VIOLATION_MESSAGE, $serialization)) { |
|
91 | 91 | return $this->violationMessageDeserializer->deserialize( |
92 | 92 | $serialization[CheckResultSerializer::KEY_VIOLATION_MESSAGE] |
93 | 93 | ); |
@@ -99,17 +99,17 @@ discard block |
||
99 | 99 | private function getConstraintClarificationFromSerialization( |
100 | 100 | array $serialization |
101 | 101 | ): MultilingualTextValue { |
102 | - if ( array_key_exists( CheckResultSerializer::KEY_CONSTRAINT_CLARIFICATION, $serialization ) ) { |
|
102 | + if (array_key_exists(CheckResultSerializer::KEY_CONSTRAINT_CLARIFICATION, $serialization)) { |
|
103 | 103 | return MultilingualTextValue::newFromArray( |
104 | 104 | $serialization[CheckResultSerializer::KEY_CONSTRAINT_CLARIFICATION] |
105 | 105 | ); |
106 | 106 | } else { |
107 | - return new MultilingualTextValue( [] ); |
|
107 | + return new MultilingualTextValue([]); |
|
108 | 108 | } |
109 | 109 | } |
110 | 110 | |
111 | - private function getDependencyMetadataFromSerialization( array $serialization ): DependencyMetadata { |
|
112 | - if ( array_key_exists( CheckResultSerializer::KEY_DEPENDENCY_METADATA, $serialization ) ) { |
|
111 | + private function getDependencyMetadataFromSerialization(array $serialization): DependencyMetadata { |
|
112 | + if (array_key_exists(CheckResultSerializer::KEY_DEPENDENCY_METADATA, $serialization)) { |
|
113 | 113 | return $this->deserializeDependencyMetadata( |
114 | 114 | $serialization[CheckResultSerializer::KEY_DEPENDENCY_METADATA] |
115 | 115 | ); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | } |
119 | 119 | } |
120 | 120 | |
121 | - private function deserializeCachingMetadata( array $serialization ): CachingMetadata { |
|
121 | + private function deserializeCachingMetadata(array $serialization): CachingMetadata { |
|
122 | 122 | if ( |
123 | 123 | array_key_exists( |
124 | 124 | CheckResultSerializer::KEY_CACHING_METADATA_MAX_AGE, |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | } |
134 | 134 | } |
135 | 135 | |
136 | - private function deserializeDependencyMetadata( array $serialization ): DependencyMetadata { |
|
136 | + private function deserializeDependencyMetadata(array $serialization): DependencyMetadata { |
|
137 | 137 | if ( |
138 | 138 | array_key_exists( |
139 | 139 | CheckResultSerializer::KEY_DEPENDENCY_METADATA_FUTURE_TIME, |
@@ -143,20 +143,20 @@ discard block |
||
143 | 143 | $futureTime = TimeValue::newFromArray( |
144 | 144 | $serialization[CheckResultSerializer::KEY_DEPENDENCY_METADATA_FUTURE_TIME] |
145 | 145 | ); |
146 | - $futureTimeDependencyMetadata = DependencyMetadata::ofFutureTime( $futureTime ); |
|
146 | + $futureTimeDependencyMetadata = DependencyMetadata::ofFutureTime($futureTime); |
|
147 | 147 | } else { |
148 | 148 | $futureTimeDependencyMetadata = DependencyMetadata::blank(); |
149 | 149 | } |
150 | 150 | |
151 | 151 | $dependencyMetadata = array_reduce( |
152 | 152 | $serialization[CheckResultSerializer::KEY_DEPENDENCY_METADATA_ENTITY_IDS], |
153 | - function ( DependencyMetadata $metadata, $entityIdSerialization ) { |
|
154 | - $entityId = $this->entityIdParser->parse( $entityIdSerialization ); |
|
153 | + function(DependencyMetadata $metadata, $entityIdSerialization) { |
|
154 | + $entityId = $this->entityIdParser->parse($entityIdSerialization); |
|
155 | 155 | |
156 | - return DependencyMetadata::merge( [ |
|
156 | + return DependencyMetadata::merge([ |
|
157 | 157 | $metadata, |
158 | - DependencyMetadata::ofEntityId( $entityId ), |
|
159 | - ] ); |
|
158 | + DependencyMetadata::ofEntityId($entityId), |
|
159 | + ]); |
|
160 | 160 | }, |
161 | 161 | $futureTimeDependencyMetadata |
162 | 162 | ); |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare( strict_types = 1 ); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Checker; |
6 | 6 | |
@@ -74,26 +74,26 @@ discard block |
||
74 | 74 | * @return array first element is the namespace number (default namespace for TitleParser), |
75 | 75 | * second element is a string to prepend to the title before giving it to the TitleParser |
76 | 76 | */ |
77 | - private function getCommonsNamespace( string $namespace ): array { |
|
78 | - switch ( $namespace ) { |
|
77 | + private function getCommonsNamespace(string $namespace): array { |
|
78 | + switch ($namespace) { |
|
79 | 79 | case '': |
80 | - return [ NS_MAIN, '' ]; |
|
80 | + return [NS_MAIN, '']; |
|
81 | 81 | // extra namespaces, see operations/mediawiki-config.git, |
82 | 82 | // wmf-config/InitialiseSettings.php, 'wgExtraNamespaces' key, 'commonswiki' subkey |
83 | 83 | case 'Creator': |
84 | - return [ 100, '' ]; |
|
84 | + return [100, '']; |
|
85 | 85 | case 'TimedText': |
86 | - return [ 102, '' ]; |
|
86 | + return [102, '']; |
|
87 | 87 | case 'Sequence': |
88 | - return [ 104, '' ]; |
|
88 | + return [104, '']; |
|
89 | 89 | case 'Institution': |
90 | - return [ 106, '' ]; |
|
90 | + return [106, '']; |
|
91 | 91 | // extension namespace, see mediawiki/extensions/JsonConfig.git, |
92 | 92 | // extension.json, 'namespaces' key, third element |
93 | 93 | case 'Data': |
94 | - return [ 486, '' ]; |
|
94 | + return [486, '']; |
|
95 | 95 | default: |
96 | - return [ NS_MAIN, $namespace . ':' ]; |
|
96 | + return [NS_MAIN, $namespace.':']; |
|
97 | 97 | } |
98 | 98 | } |
99 | 99 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * |
103 | 103 | * @throws ConstraintParameterException |
104 | 104 | */ |
105 | - public function checkConstraint( Context $context, Constraint $constraint ): CheckResult { |
|
105 | + public function checkConstraint(Context $context, Constraint $constraint): CheckResult { |
|
106 | 106 | $constraintParameters = $constraint->getConstraintParameters(); |
107 | 107 | $constraintTypeItemId = $constraint->getConstraintTypeItemId(); |
108 | 108 | |
@@ -113,9 +113,9 @@ discard block |
||
113 | 113 | |
114 | 114 | $snak = $context->getSnak(); |
115 | 115 | |
116 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
116 | + if (!$snak instanceof PropertyValueSnak) { |
|
117 | 117 | // nothing to check |
118 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_COMPLIANCE ); |
|
118 | + return new CheckResult($context, $constraint, CheckResult::STATUS_COMPLIANCE); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | $dataValue = $snak->getDataValue(); |
@@ -125,52 +125,52 @@ discard block |
||
125 | 125 | * type of $dataValue for properties with 'Commons link' constraint has to be 'string' |
126 | 126 | * parameter $namespace can be null, works for commons galleries |
127 | 127 | */ |
128 | - if ( $dataValue->getType() !== 'string' ) { |
|
129 | - $message = ( new ViolationMessage( 'wbqc-violation-message-value-needed-of-type' ) ) |
|
130 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
131 | - ->withDataValueType( 'string' ); |
|
132 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, $message ); |
|
128 | + if ($dataValue->getType() !== 'string') { |
|
129 | + $message = (new ViolationMessage('wbqc-violation-message-value-needed-of-type')) |
|
130 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
131 | + ->withDataValueType('string'); |
|
132 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, $message); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | $commonsLink = $dataValue->getValue(); |
136 | - if ( !$this->commonsLinkIsWellFormed( $commonsLink ) ) { |
|
137 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, |
|
138 | - new ViolationMessage( 'wbqc-violation-message-commons-link-not-well-formed' ) ); |
|
136 | + if (!$this->commonsLinkIsWellFormed($commonsLink)) { |
|
137 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, |
|
138 | + new ViolationMessage('wbqc-violation-message-commons-link-not-well-formed')); |
|
139 | 139 | } |
140 | 140 | |
141 | - $dataType = $this->propertyDatatypeLookup->getDataTypeIdForProperty( $snak->getPropertyId() ); |
|
142 | - switch ( $dataType ) { |
|
141 | + $dataType = $this->propertyDatatypeLookup->getDataTypeIdForProperty($snak->getPropertyId()); |
|
142 | + switch ($dataType) { |
|
143 | 143 | case 'geo-shape': |
144 | 144 | case 'tabular-data': |
145 | - if ( strpos( $commonsLink, $namespace . ':' ) !== 0 ) { |
|
146 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, |
|
147 | - new ViolationMessage( 'wbqc-violation-message-commons-link-not-well-formed' ) ); |
|
145 | + if (strpos($commonsLink, $namespace.':') !== 0) { |
|
146 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, |
|
147 | + new ViolationMessage('wbqc-violation-message-commons-link-not-well-formed')); |
|
148 | 148 | } |
149 | 149 | $pageName = $commonsLink; |
150 | 150 | break; |
151 | 151 | default: |
152 | - $pageName = $namespace ? $namespace . ':' . $commonsLink : $commonsLink; |
|
152 | + $pageName = $namespace ? $namespace.':'.$commonsLink : $commonsLink; |
|
153 | 153 | break; |
154 | 154 | } |
155 | 155 | |
156 | - $prefix = $this->getCommonsNamespace( $namespace )[1]; |
|
156 | + $prefix = $this->getCommonsNamespace($namespace)[1]; |
|
157 | 157 | $normalizedTitle = $this->pageNameNormalizer->normalizePageName( |
158 | 158 | $pageName, |
159 | 159 | 'https://commons.wikimedia.org/w/api.php' |
160 | 160 | ); |
161 | - if ( $normalizedTitle === false ) { |
|
162 | - if ( $this->valueIncludesNamespace( $commonsLink, $namespace ) ) { |
|
163 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, |
|
164 | - new ViolationMessage( 'wbqc-violation-message-commons-link-not-well-formed' ) ); |
|
161 | + if ($normalizedTitle === false) { |
|
162 | + if ($this->valueIncludesNamespace($commonsLink, $namespace)) { |
|
163 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, |
|
164 | + new ViolationMessage('wbqc-violation-message-commons-link-not-well-formed')); |
|
165 | 165 | } |
166 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, |
|
167 | - new ViolationMessage( 'wbqc-violation-message-commons-link-no-existent' ) ); |
|
166 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, |
|
167 | + new ViolationMessage('wbqc-violation-message-commons-link-no-existent')); |
|
168 | 168 | } |
169 | 169 | |
170 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_COMPLIANCE, null ); |
|
170 | + return new CheckResult($context, $constraint, CheckResult::STATUS_COMPLIANCE, null); |
|
171 | 171 | } |
172 | 172 | |
173 | - public function checkConstraintParameters( Constraint $constraint ): array { |
|
173 | + public function checkConstraintParameters(Constraint $constraint): array { |
|
174 | 174 | $constraintParameters = $constraint->getConstraintParameters(); |
175 | 175 | $constraintTypeItemId = $constraint->getConstraintTypeItemId(); |
176 | 176 | $exceptions = []; |
@@ -179,15 +179,15 @@ discard block |
||
179 | 179 | $constraintParameters, |
180 | 180 | $constraintTypeItemId |
181 | 181 | ); |
182 | - } catch ( ConstraintParameterException $e ) { |
|
182 | + } catch (ConstraintParameterException $e) { |
|
183 | 183 | $exceptions[] = $e; |
184 | 184 | } |
185 | 185 | return $exceptions; |
186 | 186 | } |
187 | 187 | |
188 | - private function commonsLinkIsWellFormed( string $commonsLink ): bool { |
|
189 | - $toReplace = [ "_", "%20" ]; |
|
190 | - $compareString = trim( str_replace( $toReplace, '', $commonsLink ) ); |
|
188 | + private function commonsLinkIsWellFormed(string $commonsLink): bool { |
|
189 | + $toReplace = ["_", "%20"]; |
|
190 | + $compareString = trim(str_replace($toReplace, '', $commonsLink)); |
|
191 | 191 | |
192 | 192 | return $commonsLink === $compareString; |
193 | 193 | } |
@@ -196,9 +196,9 @@ discard block |
||
196 | 196 | * Checks whether the value of the statement already includes the namespace. |
197 | 197 | * This special case should be reported as “malformed title” instead of “title does not exist”. |
198 | 198 | */ |
199 | - private function valueIncludesNamespace( string $value, string $namespace ): bool { |
|
199 | + private function valueIncludesNamespace(string $value, string $namespace): bool { |
|
200 | 200 | return $namespace !== '' && |
201 | - strncasecmp( $value, $namespace . ':', strlen( $namespace ) + 1 ) === 0; |
|
201 | + strncasecmp($value, $namespace.':', strlen($namespace) + 1) === 0; |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | } |
@@ -32,9 +32,9 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @param array $headers |
34 | 34 | */ |
35 | - public function __construct( array $headers ) { |
|
36 | - foreach ( $headers as $header ) { |
|
37 | - $this->addHeader( $header ); |
|
35 | + public function __construct(array $headers) { |
|
36 | + foreach ($headers as $header) { |
|
37 | + $this->addHeader($header); |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | |
@@ -43,16 +43,16 @@ discard block |
||
43 | 43 | * |
44 | 44 | * @throws InvalidArgumentException |
45 | 45 | */ |
46 | - private function addHeader( $header ) { |
|
47 | - Assert::parameterType( [ 'string', HtmlTableHeaderBuilder::class ], $header, '$header' ); |
|
46 | + private function addHeader($header) { |
|
47 | + Assert::parameterType(['string', HtmlTableHeaderBuilder::class], $header, '$header'); |
|
48 | 48 | |
49 | - if ( is_string( $header ) ) { |
|
50 | - $header = new HtmlTableHeaderBuilder( $header ); |
|
49 | + if (is_string($header)) { |
|
50 | + $header = new HtmlTableHeaderBuilder($header); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | $this->headers[] = $header; |
54 | 54 | |
55 | - if ( $header->getIsSortable() ) { |
|
55 | + if ($header->getIsSortable()) { |
|
56 | 56 | $this->isSortable = true; |
57 | 57 | } |
58 | 58 | } |
@@ -85,12 +85,12 @@ discard block |
||
85 | 85 | * |
86 | 86 | * @throws InvalidArgumentException |
87 | 87 | */ |
88 | - public function appendRow( array $cells ) { |
|
89 | - foreach ( $cells as $key => $cell ) { |
|
90 | - if ( is_string( $cell ) ) { |
|
91 | - $cells[$key] = new HtmlTableCellBuilder( $cell ); |
|
92 | - } elseif ( !( $cell instanceof HtmlTableCellBuilder ) ) { |
|
93 | - throw new InvalidArgumentException( '$cells must be array of HtmlTableCell objects.' ); |
|
88 | + public function appendRow(array $cells) { |
|
89 | + foreach ($cells as $key => $cell) { |
|
90 | + if (is_string($cell)) { |
|
91 | + $cells[$key] = new HtmlTableCellBuilder($cell); |
|
92 | + } elseif (!($cell instanceof HtmlTableCellBuilder)) { |
|
93 | + throw new InvalidArgumentException('$cells must be array of HtmlTableCell objects.'); |
|
94 | 94 | } |
95 | 95 | } |
96 | 96 | |
@@ -104,13 +104,13 @@ discard block |
||
104 | 104 | * |
105 | 105 | * @throws InvalidArgumentException |
106 | 106 | */ |
107 | - public function appendRows( array $rows ) { |
|
108 | - foreach ( $rows as $cells ) { |
|
109 | - if ( !is_array( $cells ) ) { |
|
110 | - throw new InvalidArgumentException( '$rows must be array of arrays of HtmlTableCell objects.' ); |
|
107 | + public function appendRows(array $rows) { |
|
108 | + foreach ($rows as $cells) { |
|
109 | + if (!is_array($cells)) { |
|
110 | + throw new InvalidArgumentException('$rows must be array of arrays of HtmlTableCell objects.'); |
|
111 | 111 | } |
112 | 112 | |
113 | - $this->appendRow( $cells ); |
|
113 | + $this->appendRow($cells); |
|
114 | 114 | } |
115 | 115 | } |
116 | 116 | |
@@ -122,38 +122,38 @@ discard block |
||
122 | 122 | public function toHtml() { |
123 | 123 | // Open table |
124 | 124 | $tableClasses = 'wikitable'; |
125 | - if ( $this->isSortable ) { |
|
125 | + if ($this->isSortable) { |
|
126 | 126 | $tableClasses .= ' sortable'; |
127 | 127 | } |
128 | - $html = Html::openElement( 'table', [ 'class' => $tableClasses ] ); |
|
128 | + $html = Html::openElement('table', ['class' => $tableClasses]); |
|
129 | 129 | |
130 | 130 | // Write headers |
131 | - $html .= Html::openElement( 'thead' ); |
|
132 | - $html .= Html::openElement( 'tr' ); |
|
133 | - foreach ( $this->headers as $header ) { |
|
131 | + $html .= Html::openElement('thead'); |
|
132 | + $html .= Html::openElement('tr'); |
|
133 | + foreach ($this->headers as $header) { |
|
134 | 134 | $html .= $header->toHtml(); |
135 | 135 | } |
136 | - $html .= Html::closeElement( 'tr' ); |
|
137 | - $html .= Html::closeElement( 'thead' ); |
|
138 | - $html .= Html::openElement( 'tbody' ); |
|
136 | + $html .= Html::closeElement('tr'); |
|
137 | + $html .= Html::closeElement('thead'); |
|
138 | + $html .= Html::openElement('tbody'); |
|
139 | 139 | |
140 | 140 | // Write rows |
141 | - foreach ( $this->rows as $row ) { |
|
142 | - $html .= Html::openElement( 'tr' ); |
|
141 | + foreach ($this->rows as $row) { |
|
142 | + $html .= Html::openElement('tr'); |
|
143 | 143 | |
144 | 144 | /** |
145 | 145 | * @var HtmlTableCellBuilder $cell |
146 | 146 | */ |
147 | - foreach ( $row as $cell ) { |
|
147 | + foreach ($row as $cell) { |
|
148 | 148 | $html .= $cell->toHtml(); |
149 | 149 | } |
150 | 150 | |
151 | - $html .= Html::closeElement( 'tr' ); |
|
151 | + $html .= Html::closeElement('tr'); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | // Close table |
155 | - $html .= Html::closeElement( 'tbody' ); |
|
156 | - $html .= Html::closeElement( 'table' ); |
|
155 | + $html .= Html::closeElement('tbody'); |
|
156 | + $html .= Html::closeElement('table'); |
|
157 | 157 | |
158 | 158 | return $html; |
159 | 159 | } |