@@ -25,24 +25,24 @@ discard block |
||
25 | 25 | use WikibaseQuality\ConstraintReport\ConstraintCheck\Result\CheckResultSerializer; |
26 | 26 | |
27 | 27 | return [ |
28 | - ConstraintsServices::LOGGING_HELPER => function( MediaWikiServices $services ) { |
|
28 | + ConstraintsServices::LOGGING_HELPER => function(MediaWikiServices $services) { |
|
29 | 29 | return new LoggingHelper( |
30 | 30 | $services->getStatsdDataFactory(), |
31 | - LoggerFactory::getInstance( 'WikibaseQualityConstraints' ), |
|
31 | + LoggerFactory::getInstance('WikibaseQualityConstraints'), |
|
32 | 32 | $services->getMainConfig() |
33 | 33 | ); |
34 | 34 | }, |
35 | 35 | |
36 | - ConstraintsServices::CONSTRAINT_REPOSITORY => function( MediaWikiServices $services ) { |
|
36 | + ConstraintsServices::CONSTRAINT_REPOSITORY => function(MediaWikiServices $services) { |
|
37 | 37 | return new ConstraintRepository(); |
38 | 38 | }, |
39 | 39 | |
40 | - ConstraintsServices::CONSTRAINT_LOOKUP => function( MediaWikiServices $services ) { |
|
41 | - $constraintRepository = ConstraintsServices::getConstraintRepository( $services ); |
|
42 | - return new CachingConstraintLookup( $constraintRepository ); |
|
40 | + ConstraintsServices::CONSTRAINT_LOOKUP => function(MediaWikiServices $services) { |
|
41 | + $constraintRepository = ConstraintsServices::getConstraintRepository($services); |
|
42 | + return new CachingConstraintLookup($constraintRepository); |
|
43 | 43 | }, |
44 | 44 | |
45 | - ConstraintsServices::CHECK_RESULT_SERIALIZER => function( MediaWikiServices $services ) { |
|
45 | + ConstraintsServices::CHECK_RESULT_SERIALIZER => function(MediaWikiServices $services) { |
|
46 | 46 | return new CheckResultSerializer( |
47 | 47 | new ConstraintSerializer( |
48 | 48 | false // constraint parameters are not exposed |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | ); |
54 | 54 | }, |
55 | 55 | |
56 | - ConstraintsServices::CHECK_RESULT_DESERIALIZER => function( MediaWikiServices $services ) { |
|
56 | + ConstraintsServices::CHECK_RESULT_DESERIALIZER => function(MediaWikiServices $services) { |
|
57 | 57 | // TODO in the future, get EntityIdParser and DataValueFactory from $services? |
58 | 58 | $repo = WikibaseRepo::getDefaultInstance(); |
59 | 59 | $entityIdParser = $repo->getEntityIdParser(); |
@@ -70,11 +70,11 @@ discard block |
||
70 | 70 | ); |
71 | 71 | }, |
72 | 72 | |
73 | - ConstraintsServices::VIOLATION_MESSAGE_SERIALIZER => function( MediaWikiServices $services ) { |
|
73 | + ConstraintsServices::VIOLATION_MESSAGE_SERIALIZER => function(MediaWikiServices $services) { |
|
74 | 74 | return new ViolationMessageSerializer(); |
75 | 75 | }, |
76 | 76 | |
77 | - ConstraintsServices::VIOLATION_MESSAGE_DESERIALIZER => function( MediaWikiServices $services ) { |
|
77 | + ConstraintsServices::VIOLATION_MESSAGE_DESERIALIZER => function(MediaWikiServices $services) { |
|
78 | 78 | // TODO in the future, get EntityIdParser and DataValueFactory from $services? |
79 | 79 | $repo = WikibaseRepo::getDefaultInstance(); |
80 | 80 | $entityIdParser = $repo->getEntityIdParser(); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | ); |
87 | 87 | }, |
88 | 88 | |
89 | - ConstraintsServices::CONSTRAINT_PARAMETER_PARSER => function( MediaWikiServices $services ) { |
|
89 | + ConstraintsServices::CONSTRAINT_PARAMETER_PARSER => function(MediaWikiServices $services) { |
|
90 | 90 | // TODO in the future, get DeserializerFactory and concept base URIs from $services? |
91 | 91 | $repo = WikibaseRepo::getDefaultInstance(); |
92 | 92 | $deserializerFactory = $repo->getBaseDataModelDeserializerFactory(); |
@@ -99,11 +99,11 @@ discard block |
||
99 | 99 | ); |
100 | 100 | }, |
101 | 101 | |
102 | - ConstraintsServices::CONNECTION_CHECKER_HELPER => function( MediaWikiServices $services ) { |
|
102 | + ConstraintsServices::CONNECTION_CHECKER_HELPER => function(MediaWikiServices $services) { |
|
103 | 103 | return new ConnectionCheckerHelper(); |
104 | 104 | }, |
105 | 105 | |
106 | - ConstraintsServices::RANGE_CHECKER_HELPER => function( MediaWikiServices $services ) { |
|
106 | + ConstraintsServices::RANGE_CHECKER_HELPER => function(MediaWikiServices $services) { |
|
107 | 107 | // TODO in the future, get UnitConverter from $services? |
108 | 108 | $repo = WikibaseRepo::getDefaultInstance(); |
109 | 109 | $unitConverter = $repo->getUnitConverter(); |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | ); |
115 | 115 | }, |
116 | 116 | |
117 | - ConstraintsServices::SPARQL_HELPER => function( MediaWikiServices $services ) { |
|
118 | - $endpoint = $services->getMainConfig()->get( 'WBQualityConstraintsSparqlEndpoint' ); |
|
119 | - if ( $endpoint === '' ) { |
|
117 | + ConstraintsServices::SPARQL_HELPER => function(MediaWikiServices $services) { |
|
118 | + $endpoint = $services->getMainConfig()->get('WBQualityConstraintsSparqlEndpoint'); |
|
119 | + if ($endpoint === '') { |
|
120 | 120 | return new DummySparqlHelper(); |
121 | 121 | } |
122 | 122 | |
@@ -132,113 +132,113 @@ discard block |
||
132 | 132 | $entityIdParser, |
133 | 133 | $propertyDataTypeLookup, |
134 | 134 | $services->getMainWANObjectCache(), |
135 | - ConstraintsServices::getViolationMessageSerializer( $services ), |
|
136 | - ConstraintsServices::getViolationMessageDeserializer( $services ), |
|
135 | + ConstraintsServices::getViolationMessageSerializer($services), |
|
136 | + ConstraintsServices::getViolationMessageDeserializer($services), |
|
137 | 137 | $services->getStatsdDataFactory() |
138 | 138 | ); |
139 | 139 | }, |
140 | 140 | |
141 | - ConstraintsServices::TYPE_CHECKER_HELPER => function( MediaWikiServices $services ) { |
|
141 | + ConstraintsServices::TYPE_CHECKER_HELPER => function(MediaWikiServices $services) { |
|
142 | 142 | return new TypeCheckerHelper( |
143 | - WikibaseServices::getEntityLookup( $services ), |
|
143 | + WikibaseServices::getEntityLookup($services), |
|
144 | 144 | $services->getMainConfig(), |
145 | - ConstraintsServices::getSparqlHelper( $services ), |
|
145 | + ConstraintsServices::getSparqlHelper($services), |
|
146 | 146 | $services->getStatsdDataFactory() |
147 | 147 | ); |
148 | 148 | }, |
149 | 149 | |
150 | - ConstraintsServices::DELEGATING_CONSTRAINT_CHECKER => function( MediaWikiServices $services ) { |
|
150 | + ConstraintsServices::DELEGATING_CONSTRAINT_CHECKER => function(MediaWikiServices $services) { |
|
151 | 151 | // TODO in the future, get StatementGuidParser from $services? |
152 | 152 | $repo = WikibaseRepo::getDefaultInstance(); |
153 | 153 | $statementGuidParser = $repo->getStatementGuidParser(); |
154 | 154 | |
155 | 155 | $config = $services->getMainConfig(); |
156 | 156 | $checkerMap = [ |
157 | - $config->get( 'WBQualityConstraintsConflictsWithConstraintId' ) |
|
158 | - => ConstraintCheckerServices::getConflictsWithChecker( $services ), |
|
159 | - $config->get( 'WBQualityConstraintsItemRequiresClaimConstraintId' ) |
|
160 | - => ConstraintCheckerServices::getItemChecker( $services ), |
|
161 | - $config->get( 'WBQualityConstraintsValueRequiresClaimConstraintId' ) |
|
162 | - => ConstraintCheckerServices::getTargetRequiredClaimChecker( $services ), |
|
163 | - $config->get( 'WBQualityConstraintsSymmetricConstraintId' ) |
|
164 | - => ConstraintCheckerServices::getSymmetricChecker( $services ), |
|
165 | - $config->get( 'WBQualityConstraintsInverseConstraintId' ) |
|
166 | - => ConstraintCheckerServices::getInverseChecker( $services ), |
|
167 | - $config->get( 'WBQualityConstraintsUsedAsQualifierConstraintId' ) |
|
168 | - => ConstraintCheckerServices::getQualifierChecker( $services ), |
|
169 | - $config->get( 'WBQualityConstraintsAllowedQualifiersConstraintId' ) |
|
170 | - => ConstraintCheckerServices::getQualifiersChecker( $services ), |
|
171 | - $config->get( 'WBQualityConstraintsMandatoryQualifierConstraintId' ) |
|
172 | - => ConstraintCheckerServices::getMandatoryQualifiersChecker( $services ), |
|
173 | - $config->get( 'WBQualityConstraintsRangeConstraintId' ) |
|
174 | - => ConstraintCheckerServices::getRangeChecker( $services ), |
|
175 | - $config->get( 'WBQualityConstraintsDifferenceWithinRangeConstraintId' ) |
|
176 | - => ConstraintCheckerServices::getDiffWithinRangeChecker( $services ), |
|
177 | - $config->get( 'WBQualityConstraintsTypeConstraintId' ) |
|
178 | - => ConstraintCheckerServices::getTypeChecker( $services ), |
|
179 | - $config->get( 'WBQualityConstraintsValueTypeConstraintId' ) |
|
180 | - => ConstraintCheckerServices::getValueTypeChecker( $services ), |
|
181 | - $config->get( 'WBQualityConstraintsSingleValueConstraintId' ) |
|
182 | - => ConstraintCheckerServices::getSingleValueChecker( $services ), |
|
183 | - $config->get( 'WBQualityConstraintsMultiValueConstraintId' ) |
|
184 | - => ConstraintCheckerServices::getMultiValueChecker( $services ), |
|
185 | - $config->get( 'WBQualityConstraintsDistinctValuesConstraintId' ) |
|
186 | - => ConstraintCheckerServices::getUniqueValueChecker( $services ), |
|
187 | - $config->get( 'WBQualityConstraintsFormatConstraintId' ) |
|
188 | - => ConstraintCheckerServices::getFormatChecker( $services ), |
|
189 | - $config->get( 'WBQualityConstraintsCommonsLinkConstraintId' ) |
|
190 | - => ConstraintCheckerServices::getCommonsLinkChecker( $services ), |
|
191 | - $config->get( 'WBQualityConstraintsOneOfConstraintId' ) |
|
192 | - => ConstraintCheckerServices::getOneOfChecker( $services ), |
|
193 | - $config->get( 'WBQualityConstraintsUsedForValuesOnlyConstraintId' ) |
|
194 | - => ConstraintCheckerServices::getValueOnlyChecker( $services ), |
|
195 | - $config->get( 'WBQualityConstraintsUsedAsReferenceConstraintId' ) |
|
196 | - => ConstraintCheckerServices::getReferenceChecker( $services ), |
|
197 | - $config->get( 'WBQualityConstraintsNoBoundsConstraintId' ) |
|
198 | - => ConstraintCheckerServices::getNoBoundsChecker( $services ), |
|
199 | - $config->get( 'WBQualityConstraintsAllowedUnitsConstraintId' ) |
|
200 | - => ConstraintCheckerServices::getAllowedUnitsChecker( $services ), |
|
201 | - $config->get( 'WBQualityConstraintsSingleBestValueConstraintId' ) |
|
202 | - => ConstraintCheckerServices::getSingleBestValueChecker( $services ), |
|
203 | - $config->get( 'WBQualityConstraintsAllowedEntityTypesConstraintId' ) |
|
204 | - => ConstraintCheckerServices::getEntityTypeChecker( $services ), |
|
205 | - $config->get( 'WBQualityConstraintsNoneOfConstraintId' ) |
|
206 | - => ConstraintCheckerServices::getNoneOfChecker( $services ), |
|
207 | - $config->get( 'WBQualityConstraintsIntegerConstraintId' ) |
|
208 | - => ConstraintCheckerServices::getIntegerChecker( $services ), |
|
209 | - $config->get( 'WBQualityConstraintsCitationNeededConstraintId' ) |
|
210 | - => ConstraintCheckerServices::getCitationNeededChecker( $services ), |
|
211 | - $config->get( 'WBQualityConstraintsPropertyScopeConstraintId' ) |
|
212 | - => ConstraintCheckerServices::getPropertyScopeChecker( $services ), |
|
213 | - $config->get( 'WBQualityConstraintsContemporaryConstraintId' ) |
|
214 | - => ConstraintCheckerServices::getContemporaryChecker( $services ), |
|
157 | + $config->get('WBQualityConstraintsConflictsWithConstraintId') |
|
158 | + => ConstraintCheckerServices::getConflictsWithChecker($services), |
|
159 | + $config->get('WBQualityConstraintsItemRequiresClaimConstraintId') |
|
160 | + => ConstraintCheckerServices::getItemChecker($services), |
|
161 | + $config->get('WBQualityConstraintsValueRequiresClaimConstraintId') |
|
162 | + => ConstraintCheckerServices::getTargetRequiredClaimChecker($services), |
|
163 | + $config->get('WBQualityConstraintsSymmetricConstraintId') |
|
164 | + => ConstraintCheckerServices::getSymmetricChecker($services), |
|
165 | + $config->get('WBQualityConstraintsInverseConstraintId') |
|
166 | + => ConstraintCheckerServices::getInverseChecker($services), |
|
167 | + $config->get('WBQualityConstraintsUsedAsQualifierConstraintId') |
|
168 | + => ConstraintCheckerServices::getQualifierChecker($services), |
|
169 | + $config->get('WBQualityConstraintsAllowedQualifiersConstraintId') |
|
170 | + => ConstraintCheckerServices::getQualifiersChecker($services), |
|
171 | + $config->get('WBQualityConstraintsMandatoryQualifierConstraintId') |
|
172 | + => ConstraintCheckerServices::getMandatoryQualifiersChecker($services), |
|
173 | + $config->get('WBQualityConstraintsRangeConstraintId') |
|
174 | + => ConstraintCheckerServices::getRangeChecker($services), |
|
175 | + $config->get('WBQualityConstraintsDifferenceWithinRangeConstraintId') |
|
176 | + => ConstraintCheckerServices::getDiffWithinRangeChecker($services), |
|
177 | + $config->get('WBQualityConstraintsTypeConstraintId') |
|
178 | + => ConstraintCheckerServices::getTypeChecker($services), |
|
179 | + $config->get('WBQualityConstraintsValueTypeConstraintId') |
|
180 | + => ConstraintCheckerServices::getValueTypeChecker($services), |
|
181 | + $config->get('WBQualityConstraintsSingleValueConstraintId') |
|
182 | + => ConstraintCheckerServices::getSingleValueChecker($services), |
|
183 | + $config->get('WBQualityConstraintsMultiValueConstraintId') |
|
184 | + => ConstraintCheckerServices::getMultiValueChecker($services), |
|
185 | + $config->get('WBQualityConstraintsDistinctValuesConstraintId') |
|
186 | + => ConstraintCheckerServices::getUniqueValueChecker($services), |
|
187 | + $config->get('WBQualityConstraintsFormatConstraintId') |
|
188 | + => ConstraintCheckerServices::getFormatChecker($services), |
|
189 | + $config->get('WBQualityConstraintsCommonsLinkConstraintId') |
|
190 | + => ConstraintCheckerServices::getCommonsLinkChecker($services), |
|
191 | + $config->get('WBQualityConstraintsOneOfConstraintId') |
|
192 | + => ConstraintCheckerServices::getOneOfChecker($services), |
|
193 | + $config->get('WBQualityConstraintsUsedForValuesOnlyConstraintId') |
|
194 | + => ConstraintCheckerServices::getValueOnlyChecker($services), |
|
195 | + $config->get('WBQualityConstraintsUsedAsReferenceConstraintId') |
|
196 | + => ConstraintCheckerServices::getReferenceChecker($services), |
|
197 | + $config->get('WBQualityConstraintsNoBoundsConstraintId') |
|
198 | + => ConstraintCheckerServices::getNoBoundsChecker($services), |
|
199 | + $config->get('WBQualityConstraintsAllowedUnitsConstraintId') |
|
200 | + => ConstraintCheckerServices::getAllowedUnitsChecker($services), |
|
201 | + $config->get('WBQualityConstraintsSingleBestValueConstraintId') |
|
202 | + => ConstraintCheckerServices::getSingleBestValueChecker($services), |
|
203 | + $config->get('WBQualityConstraintsAllowedEntityTypesConstraintId') |
|
204 | + => ConstraintCheckerServices::getEntityTypeChecker($services), |
|
205 | + $config->get('WBQualityConstraintsNoneOfConstraintId') |
|
206 | + => ConstraintCheckerServices::getNoneOfChecker($services), |
|
207 | + $config->get('WBQualityConstraintsIntegerConstraintId') |
|
208 | + => ConstraintCheckerServices::getIntegerChecker($services), |
|
209 | + $config->get('WBQualityConstraintsCitationNeededConstraintId') |
|
210 | + => ConstraintCheckerServices::getCitationNeededChecker($services), |
|
211 | + $config->get('WBQualityConstraintsPropertyScopeConstraintId') |
|
212 | + => ConstraintCheckerServices::getPropertyScopeChecker($services), |
|
213 | + $config->get('WBQualityConstraintsContemporaryConstraintId') |
|
214 | + => ConstraintCheckerServices::getContemporaryChecker($services), |
|
215 | 215 | ]; |
216 | 216 | |
217 | 217 | return new DelegatingConstraintChecker( |
218 | - WikibaseServices::getEntityLookup( $services ), |
|
218 | + WikibaseServices::getEntityLookup($services), |
|
219 | 219 | $checkerMap, |
220 | - ConstraintsServices::getConstraintLookup( $services ), |
|
221 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
220 | + ConstraintsServices::getConstraintLookup($services), |
|
221 | + ConstraintsServices::getConstraintParameterParser($services), |
|
222 | 222 | $statementGuidParser, |
223 | - ConstraintsServices::getLoggingHelper( $services ), |
|
224 | - $config->get( 'WBQualityConstraintsCheckQualifiers' ), |
|
225 | - $config->get( 'WBQualityConstraintsCheckReferences' ), |
|
226 | - $config->get( 'WBQualityConstraintsPropertiesWithViolatingQualifiers' ) |
|
223 | + ConstraintsServices::getLoggingHelper($services), |
|
224 | + $config->get('WBQualityConstraintsCheckQualifiers'), |
|
225 | + $config->get('WBQualityConstraintsCheckReferences'), |
|
226 | + $config->get('WBQualityConstraintsPropertiesWithViolatingQualifiers') |
|
227 | 227 | ); |
228 | 228 | }, |
229 | 229 | |
230 | - ConstraintsServices::RESULTS_SOURCE => function( MediaWikiServices $services ) { |
|
230 | + ConstraintsServices::RESULTS_SOURCE => function(MediaWikiServices $services) { |
|
231 | 231 | $config = $services->getMainConfig(); |
232 | 232 | $resultsSource = new CheckingResultsSource( |
233 | - ConstraintsServices::getDelegatingConstraintChecker( $services ) |
|
233 | + ConstraintsServices::getDelegatingConstraintChecker($services) |
|
234 | 234 | ); |
235 | 235 | |
236 | - if ( $config->get( 'WBQualityConstraintsCacheCheckConstraintsResults' ) ) { |
|
236 | + if ($config->get('WBQualityConstraintsCacheCheckConstraintsResults')) { |
|
237 | 237 | $possiblyStaleConstraintTypes = [ |
238 | - $config->get( 'WBQualityConstraintsCommonsLinkConstraintId' ), |
|
239 | - $config->get( 'WBQualityConstraintsTypeConstraintId' ), |
|
240 | - $config->get( 'WBQualityConstraintsValueTypeConstraintId' ), |
|
241 | - $config->get( 'WBQualityConstraintsDistinctValuesConstraintId' ), |
|
238 | + $config->get('WBQualityConstraintsCommonsLinkConstraintId'), |
|
239 | + $config->get('WBQualityConstraintsTypeConstraintId'), |
|
240 | + $config->get('WBQualityConstraintsValueTypeConstraintId'), |
|
241 | + $config->get('WBQualityConstraintsDistinctValuesConstraintId'), |
|
242 | 242 | ]; |
243 | 243 | // TODO in the future, get EntityIdParser and WikiPageEntityMetaDataAccessor from $services? |
244 | 244 | $repo = WikibaseRepo::getDefaultInstance(); |
@@ -251,14 +251,14 @@ discard block |
||
251 | 251 | $resultsSource = new CachingResultsSource( |
252 | 252 | $resultsSource, |
253 | 253 | ResultsCache::getDefaultInstance(), |
254 | - ConstraintsServices::getCheckResultSerializer( $services ), |
|
255 | - ConstraintsServices::getCheckResultDeserializer( $services ), |
|
254 | + ConstraintsServices::getCheckResultSerializer($services), |
|
255 | + ConstraintsServices::getCheckResultDeserializer($services), |
|
256 | 256 | $wikiPageEntityMetaDataAccessor, |
257 | 257 | $entityIdParser, |
258 | - $config->get( 'WBQualityConstraintsCacheCheckConstraintsTTLSeconds' ), |
|
258 | + $config->get('WBQualityConstraintsCacheCheckConstraintsTTLSeconds'), |
|
259 | 259 | $possiblyStaleConstraintTypes, |
260 | - $config->get( 'WBQualityConstraintsCacheCheckConstraintsMaximumRevisionIds' ), |
|
261 | - ConstraintsServices::getLoggingHelper( $services ) |
|
260 | + $config->get('WBQualityConstraintsCacheCheckConstraintsMaximumRevisionIds'), |
|
261 | + ConstraintsServices::getLoggingHelper($services) |
|
262 | 262 | ); |
263 | 263 | } |
264 | 264 |
@@ -19,27 +19,27 @@ |
||
19 | 19 | const ENTITY_LOOKUP = 'WBQC_EntityLookup'; |
20 | 20 | const PROPERTY_DATA_TYPE_LOOKUP = 'WBQC_PropertyDataTypeLookup'; |
21 | 21 | |
22 | - private static function getService( MediaWikiServices $services = null, $name ) { |
|
23 | - if ( $services === null ) { |
|
22 | + private static function getService(MediaWikiServices $services = null, $name) { |
|
23 | + if ($services === null) { |
|
24 | 24 | $services = MediaWikiServices::getInstance(); |
25 | 25 | } |
26 | - return $services->getService( $name ); |
|
26 | + return $services->getService($name); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
30 | 30 | * @param MediaWikiServices|null $services |
31 | 31 | * @return EntityLookup |
32 | 32 | */ |
33 | - public static function getEntityLookup( MediaWikiServices $services = null ) { |
|
34 | - return self::getService( $services, self::ENTITY_LOOKUP ); |
|
33 | + public static function getEntityLookup(MediaWikiServices $services = null) { |
|
34 | + return self::getService($services, self::ENTITY_LOOKUP); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
38 | 38 | * @param MediaWikiServices|null $services |
39 | 39 | * @return PropertyDataTypeLookup |
40 | 40 | */ |
41 | - public static function getPropertyDataTypeLookup( MediaWikiServices $services = null ) { |
|
42 | - return self::getService( $services, self::PROPERTY_DATA_TYPE_LOOKUP ); |
|
41 | + public static function getPropertyDataTypeLookup(MediaWikiServices $services = null) { |
|
42 | + return self::getService($services, self::PROPERTY_DATA_TYPE_LOOKUP); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | } |
@@ -39,243 +39,243 @@ |
||
39 | 39 | const PROPERTY_SCOPE_CHECKER = 'WBQC_PropertyScopeChecker'; |
40 | 40 | const CONTEMPORARY_CHECKER = 'WBQC_ContemporaryChecker'; |
41 | 41 | |
42 | - private static function getService( MediaWikiServices $services = null, $name ) { |
|
43 | - if ( $services === null ) { |
|
42 | + private static function getService(MediaWikiServices $services = null, $name) { |
|
43 | + if ($services === null) { |
|
44 | 44 | $services = MediaWikiServices::getInstance(); |
45 | 45 | } |
46 | - return $services->getService( $name ); |
|
46 | + return $services->getService($name); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
50 | 50 | * @param MediaWikiServices|null $services |
51 | 51 | * @return ConstraintChecker |
52 | 52 | */ |
53 | - public static function getConflictsWithChecker( MediaWikiServices $services = null ) { |
|
54 | - return self::getService( $services, self::CONFLICTS_WITH_CHECKER ); |
|
53 | + public static function getConflictsWithChecker(MediaWikiServices $services = null) { |
|
54 | + return self::getService($services, self::CONFLICTS_WITH_CHECKER); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
58 | 58 | * @param MediaWikiServices|null $services |
59 | 59 | * @return ConstraintChecker |
60 | 60 | */ |
61 | - public static function getItemChecker( MediaWikiServices $services = null ) { |
|
62 | - return self::getService( $services, self::ITEM_CHECKER ); |
|
61 | + public static function getItemChecker(MediaWikiServices $services = null) { |
|
62 | + return self::getService($services, self::ITEM_CHECKER); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
66 | 66 | * @param MediaWikiServices|null $services |
67 | 67 | * @return ConstraintChecker |
68 | 68 | */ |
69 | - public static function getTargetRequiredClaimChecker( MediaWikiServices $services = null ) { |
|
70 | - return self::getService( $services, self::TARGET_REQUIRED_CLAIM_CHECKER ); |
|
69 | + public static function getTargetRequiredClaimChecker(MediaWikiServices $services = null) { |
|
70 | + return self::getService($services, self::TARGET_REQUIRED_CLAIM_CHECKER); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
74 | 74 | * @param MediaWikiServices|null $services |
75 | 75 | * @return ConstraintChecker |
76 | 76 | */ |
77 | - public static function getSymmetricChecker( MediaWikiServices $services = null ) { |
|
78 | - return self::getService( $services, self::SYMMETRIC_CHECKER ); |
|
77 | + public static function getSymmetricChecker(MediaWikiServices $services = null) { |
|
78 | + return self::getService($services, self::SYMMETRIC_CHECKER); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
82 | 82 | * @param MediaWikiServices|null $services |
83 | 83 | * @return ConstraintChecker |
84 | 84 | */ |
85 | - public static function getInverseChecker( MediaWikiServices $services = null ) { |
|
86 | - return self::getService( $services, self::INVERSE_CHECKER ); |
|
85 | + public static function getInverseChecker(MediaWikiServices $services = null) { |
|
86 | + return self::getService($services, self::INVERSE_CHECKER); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
90 | 90 | * @param MediaWikiServices|null $services |
91 | 91 | * @return ConstraintChecker |
92 | 92 | */ |
93 | - public static function getQualifierChecker( MediaWikiServices $services = null ) { |
|
94 | - return self::getService( $services, self::QUALIFIER_CHECKER ); |
|
93 | + public static function getQualifierChecker(MediaWikiServices $services = null) { |
|
94 | + return self::getService($services, self::QUALIFIER_CHECKER); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
98 | 98 | * @param MediaWikiServices|null $services |
99 | 99 | * @return ConstraintChecker |
100 | 100 | */ |
101 | - public static function getQualifiersChecker( MediaWikiServices $services = null ) { |
|
102 | - return self::getService( $services, self::QUALIFIERS_CHECKER ); |
|
101 | + public static function getQualifiersChecker(MediaWikiServices $services = null) { |
|
102 | + return self::getService($services, self::QUALIFIERS_CHECKER); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | /** |
106 | 106 | * @param MediaWikiServices|null $services |
107 | 107 | * @return ConstraintChecker |
108 | 108 | */ |
109 | - public static function getMandatoryQualifiersChecker( MediaWikiServices $services = null ) { |
|
110 | - return self::getService( $services, self::MANDATORY_QUALIFIERS_CHECKER ); |
|
109 | + public static function getMandatoryQualifiersChecker(MediaWikiServices $services = null) { |
|
110 | + return self::getService($services, self::MANDATORY_QUALIFIERS_CHECKER); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
114 | 114 | * @param MediaWikiServices|null $services |
115 | 115 | * @return ConstraintChecker |
116 | 116 | */ |
117 | - public static function getRangeChecker( MediaWikiServices $services = null ) { |
|
118 | - return self::getService( $services, self::RANGE_CHECKER ); |
|
117 | + public static function getRangeChecker(MediaWikiServices $services = null) { |
|
118 | + return self::getService($services, self::RANGE_CHECKER); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | /** |
122 | 122 | * @param MediaWikiServices|null $services |
123 | 123 | * @return ConstraintChecker |
124 | 124 | */ |
125 | - public static function getDiffWithinRangeChecker( MediaWikiServices $services = null ) { |
|
126 | - return self::getService( $services, self::DIFF_WITHIN_RANGE_CHECKER ); |
|
125 | + public static function getDiffWithinRangeChecker(MediaWikiServices $services = null) { |
|
126 | + return self::getService($services, self::DIFF_WITHIN_RANGE_CHECKER); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |
130 | 130 | * @param MediaWikiServices|null $services |
131 | 131 | * @return ConstraintChecker |
132 | 132 | */ |
133 | - public static function getTypeChecker( MediaWikiServices $services = null ) { |
|
134 | - return self::getService( $services, self::TYPE_CHECKER ); |
|
133 | + public static function getTypeChecker(MediaWikiServices $services = null) { |
|
134 | + return self::getService($services, self::TYPE_CHECKER); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |
138 | 138 | * @param MediaWikiServices|null $services |
139 | 139 | * @return ConstraintChecker |
140 | 140 | */ |
141 | - public static function getValueTypeChecker( MediaWikiServices $services = null ) { |
|
142 | - return self::getService( $services, self::VALUE_TYPE_CHECKER ); |
|
141 | + public static function getValueTypeChecker(MediaWikiServices $services = null) { |
|
142 | + return self::getService($services, self::VALUE_TYPE_CHECKER); |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | /** |
146 | 146 | * @param MediaWikiServices|null $services |
147 | 147 | * @return ConstraintChecker |
148 | 148 | */ |
149 | - public static function getSingleValueChecker( MediaWikiServices $services = null ) { |
|
150 | - return self::getService( $services, self::SINGLE_VALUE_CHECKER ); |
|
149 | + public static function getSingleValueChecker(MediaWikiServices $services = null) { |
|
150 | + return self::getService($services, self::SINGLE_VALUE_CHECKER); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | /** |
154 | 154 | * @param MediaWikiServices|null $services |
155 | 155 | * @return ConstraintChecker |
156 | 156 | */ |
157 | - public static function getMultiValueChecker( MediaWikiServices $services = null ) { |
|
158 | - return self::getService( $services, self::MULTI_VALUE_CHECKER ); |
|
157 | + public static function getMultiValueChecker(MediaWikiServices $services = null) { |
|
158 | + return self::getService($services, self::MULTI_VALUE_CHECKER); |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | /** |
162 | 162 | * @param MediaWikiServices|null $services |
163 | 163 | * @return ConstraintChecker |
164 | 164 | */ |
165 | - public static function getUniqueValueChecker( MediaWikiServices $services = null ) { |
|
166 | - return self::getService( $services, self::UNIQUE_VALUE_CHECKER ); |
|
165 | + public static function getUniqueValueChecker(MediaWikiServices $services = null) { |
|
166 | + return self::getService($services, self::UNIQUE_VALUE_CHECKER); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | /** |
170 | 170 | * @param MediaWikiServices|null $services |
171 | 171 | * @return ConstraintChecker |
172 | 172 | */ |
173 | - public static function getFormatChecker( MediaWikiServices $services = null ) { |
|
174 | - return self::getService( $services, self::FORMAT_CHECKER ); |
|
173 | + public static function getFormatChecker(MediaWikiServices $services = null) { |
|
174 | + return self::getService($services, self::FORMAT_CHECKER); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | /** |
178 | 178 | * @param MediaWikiServices|null $services |
179 | 179 | * @return ConstraintChecker |
180 | 180 | */ |
181 | - public static function getCommonsLinkChecker( MediaWikiServices $services = null ) { |
|
182 | - return self::getService( $services, self::COMMONS_LINK_CHECKER ); |
|
181 | + public static function getCommonsLinkChecker(MediaWikiServices $services = null) { |
|
182 | + return self::getService($services, self::COMMONS_LINK_CHECKER); |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | /** |
186 | 186 | * @param MediaWikiServices|null $services |
187 | 187 | * @return ConstraintChecker |
188 | 188 | */ |
189 | - public static function getOneOfChecker( MediaWikiServices $services = null ) { |
|
190 | - return self::getService( $services, self::ONE_OF_CHECKER ); |
|
189 | + public static function getOneOfChecker(MediaWikiServices $services = null) { |
|
190 | + return self::getService($services, self::ONE_OF_CHECKER); |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | /** |
194 | 194 | * @param MediaWikiServices|null $services |
195 | 195 | * @return ConstraintChecker |
196 | 196 | */ |
197 | - public static function getValueOnlyChecker( MediaWikiServices $services = null ) { |
|
198 | - return self::getService( $services, self::VALUE_ONLY_CHECKER ); |
|
197 | + public static function getValueOnlyChecker(MediaWikiServices $services = null) { |
|
198 | + return self::getService($services, self::VALUE_ONLY_CHECKER); |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | /** |
202 | 202 | * @param MediaWikiServices|null $services |
203 | 203 | * @return ConstraintChecker |
204 | 204 | */ |
205 | - public static function getReferenceChecker( MediaWikiServices $services = null ) { |
|
206 | - return self::getService( $services, self::REFERENCE_CHECKER ); |
|
205 | + public static function getReferenceChecker(MediaWikiServices $services = null) { |
|
206 | + return self::getService($services, self::REFERENCE_CHECKER); |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | /** |
210 | 210 | * @param MediaWikiServices|null $services |
211 | 211 | * @return ConstraintChecker |
212 | 212 | */ |
213 | - public static function getNoBoundsChecker( MediaWikiServices $services = null ) { |
|
214 | - return self::getService( $services, self::NO_BOUNDS_CHECKER ); |
|
213 | + public static function getNoBoundsChecker(MediaWikiServices $services = null) { |
|
214 | + return self::getService($services, self::NO_BOUNDS_CHECKER); |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | /** |
218 | 218 | * @param MediaWikiServices|null $services |
219 | 219 | * @return ConstraintChecker |
220 | 220 | */ |
221 | - public static function getAllowedUnitsChecker( MediaWikiServices $services = null ) { |
|
222 | - return self::getService( $services, self::ALLOWED_UNITS_CHECKER ); |
|
221 | + public static function getAllowedUnitsChecker(MediaWikiServices $services = null) { |
|
222 | + return self::getService($services, self::ALLOWED_UNITS_CHECKER); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
226 | 226 | * @param MediaWikiServices|null $services |
227 | 227 | * @return ConstraintChecker |
228 | 228 | */ |
229 | - public static function getSingleBestValueChecker( MediaWikiServices $services = null ) { |
|
230 | - return self::getService( $services, self::SINGLE_BEST_VALUE_CHECKER ); |
|
229 | + public static function getSingleBestValueChecker(MediaWikiServices $services = null) { |
|
230 | + return self::getService($services, self::SINGLE_BEST_VALUE_CHECKER); |
|
231 | 231 | } |
232 | 232 | |
233 | 233 | /** |
234 | 234 | * @param MediaWikiServices|null $services |
235 | 235 | * @return ConstraintChecker |
236 | 236 | */ |
237 | - public static function getEntityTypeChecker( MediaWikiServices $services = null ) { |
|
238 | - return self::getService( $services, self::ENTITY_TYPE_CHECKER ); |
|
237 | + public static function getEntityTypeChecker(MediaWikiServices $services = null) { |
|
238 | + return self::getService($services, self::ENTITY_TYPE_CHECKER); |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | /** |
242 | 242 | * @param MediaWikiServices|null $services |
243 | 243 | * @return ConstraintChecker |
244 | 244 | */ |
245 | - public static function getNoneOfChecker( MediaWikiServices $services = null ) { |
|
246 | - return self::getService( $services, self::NONE_OF_CHECKER ); |
|
245 | + public static function getNoneOfChecker(MediaWikiServices $services = null) { |
|
246 | + return self::getService($services, self::NONE_OF_CHECKER); |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | /** |
250 | 250 | * @param MediaWikiServices|null $services |
251 | 251 | * @return ConstraintChecker |
252 | 252 | */ |
253 | - public static function getIntegerChecker( MediaWikiServices $services = null ) { |
|
254 | - return self::getService( $services, self::INTEGER_CHECKER ); |
|
253 | + public static function getIntegerChecker(MediaWikiServices $services = null) { |
|
254 | + return self::getService($services, self::INTEGER_CHECKER); |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | /** |
258 | 258 | * @param MediaWikiServices|null $services |
259 | 259 | * @return ConstraintChecker |
260 | 260 | */ |
261 | - public static function getCitationNeededChecker( MediaWikiServices $services = null ) { |
|
262 | - return self::getService( $services, self::CITATION_NEEDED_CHECKER ); |
|
261 | + public static function getCitationNeededChecker(MediaWikiServices $services = null) { |
|
262 | + return self::getService($services, self::CITATION_NEEDED_CHECKER); |
|
263 | 263 | } |
264 | 264 | |
265 | 265 | /** |
266 | 266 | * @param MediaWikiServices|null $services |
267 | 267 | * @return ConstraintChecker |
268 | 268 | */ |
269 | - public static function getPropertyScopeChecker( MediaWikiServices $services = null ) { |
|
270 | - return self::getService( $services, self::PROPERTY_SCOPE_CHECKER ); |
|
269 | + public static function getPropertyScopeChecker(MediaWikiServices $services = null) { |
|
270 | + return self::getService($services, self::PROPERTY_SCOPE_CHECKER); |
|
271 | 271 | } |
272 | 272 | |
273 | 273 | /** |
274 | 274 | * @param MediaWikiServices|null $services |
275 | 275 | * @return ConstraintChecker |
276 | 276 | */ |
277 | - public static function getContemporaryChecker( MediaWikiServices $services = null ) { |
|
278 | - return self::getService( $services, self::CONTEMPORARY_CHECKER ); |
|
277 | + public static function getContemporaryChecker(MediaWikiServices $services = null) { |
|
278 | + return self::getService($services, self::CONTEMPORARY_CHECKER); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | } |
@@ -36,123 +36,123 @@ |
||
36 | 36 | const DELEGATING_CONSTRAINT_CHECKER = 'WBQC_DelegatingConstraintChecker'; |
37 | 37 | const RESULTS_SOURCE = 'WBQC_ResultsSource'; |
38 | 38 | |
39 | - private static function getService( MediaWikiServices $services = null, $name ) { |
|
40 | - if ( $services === null ) { |
|
39 | + private static function getService(MediaWikiServices $services = null, $name) { |
|
40 | + if ($services === null) { |
|
41 | 41 | $services = MediaWikiServices::getInstance(); |
42 | 42 | } |
43 | - return $services->getService( $name ); |
|
43 | + return $services->getService($name); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | /** |
47 | 47 | * @param MediaWikiServices|null $services |
48 | 48 | * @return LoggingHelper |
49 | 49 | */ |
50 | - public static function getLoggingHelper( MediaWikiServices $services = null ) { |
|
51 | - return self::getService( $services, self::LOGGING_HELPER ); |
|
50 | + public static function getLoggingHelper(MediaWikiServices $services = null) { |
|
51 | + return self::getService($services, self::LOGGING_HELPER); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
55 | 55 | * @param MediaWikiServices|null $services |
56 | 56 | * @return ConstraintRepository |
57 | 57 | */ |
58 | - public static function getConstraintRepository( MediaWikiServices $services = null ) { |
|
59 | - return self::getService( $services, self::CONSTRAINT_REPOSITORY ); |
|
58 | + public static function getConstraintRepository(MediaWikiServices $services = null) { |
|
59 | + return self::getService($services, self::CONSTRAINT_REPOSITORY); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
63 | 63 | * @param MediaWikiServices|null $services |
64 | 64 | * @return ConstraintLookup |
65 | 65 | */ |
66 | - public static function getConstraintLookup( MediaWikiServices $services = null ) { |
|
67 | - return self::getService( $services, self::CONSTRAINT_LOOKUP ); |
|
66 | + public static function getConstraintLookup(MediaWikiServices $services = null) { |
|
67 | + return self::getService($services, self::CONSTRAINT_LOOKUP); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
71 | 71 | * @param MediaWikiServices|null $services |
72 | 72 | * @return CheckResultSerializer |
73 | 73 | */ |
74 | - public static function getCheckResultSerializer( MediaWikiServices $services = null ) { |
|
75 | - return self::getService( $services, self::CHECK_RESULT_SERIALIZER ); |
|
74 | + public static function getCheckResultSerializer(MediaWikiServices $services = null) { |
|
75 | + return self::getService($services, self::CHECK_RESULT_SERIALIZER); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | 79 | * @param MediaWikiServices|null $services |
80 | 80 | * @return CheckResultDeserializer |
81 | 81 | */ |
82 | - public static function getCheckResultDeserializer( MediaWikiServices $services = null ) { |
|
83 | - return self::getService( $services, self::CHECK_RESULT_DESERIALIZER ); |
|
82 | + public static function getCheckResultDeserializer(MediaWikiServices $services = null) { |
|
83 | + return self::getService($services, self::CHECK_RESULT_DESERIALIZER); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | /** |
87 | 87 | * @param MediaWikiServices|null $services |
88 | 88 | * @return ViolationMessageSerializer |
89 | 89 | */ |
90 | - public static function getViolationMessageSerializer( MediaWikiServices $services = null ) { |
|
91 | - return self::getService( $services, self::VIOLATION_MESSAGE_SERIALIZER ); |
|
90 | + public static function getViolationMessageSerializer(MediaWikiServices $services = null) { |
|
91 | + return self::getService($services, self::VIOLATION_MESSAGE_SERIALIZER); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
95 | 95 | * @param MediaWikiServices|null $services |
96 | 96 | * @return ViolationMessageDeserializer |
97 | 97 | */ |
98 | - public static function getViolationMessageDeserializer( MediaWikiServices $services = null ) { |
|
99 | - return self::getService( $services, self::VIOLATION_MESSAGE_DESERIALIZER ); |
|
98 | + public static function getViolationMessageDeserializer(MediaWikiServices $services = null) { |
|
99 | + return self::getService($services, self::VIOLATION_MESSAGE_DESERIALIZER); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
103 | 103 | * @param MediaWikiServices|null $services |
104 | 104 | * @return ConstraintParameterParser |
105 | 105 | */ |
106 | - public static function getConstraintParameterParser( MediaWikiServices $services = null ) { |
|
107 | - return self::getService( $services, self::CONSTRAINT_PARAMETER_PARSER ); |
|
106 | + public static function getConstraintParameterParser(MediaWikiServices $services = null) { |
|
107 | + return self::getService($services, self::CONSTRAINT_PARAMETER_PARSER); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |
111 | 111 | * @param MediaWikiServices|null $services |
112 | 112 | * @return ConnectionCheckerHelper |
113 | 113 | */ |
114 | - public static function getConnectionCheckerHelper( MediaWikiServices $services = null ) { |
|
115 | - return self::getService( $services, self::CONNECTION_CHECKER_HELPER ); |
|
114 | + public static function getConnectionCheckerHelper(MediaWikiServices $services = null) { |
|
115 | + return self::getService($services, self::CONNECTION_CHECKER_HELPER); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
119 | 119 | * @param MediaWikiServices|null $services |
120 | 120 | * @return RangeCheckerHelper |
121 | 121 | */ |
122 | - public static function getRangeCheckerHelper( MediaWikiServices $services = null ) { |
|
123 | - return self::getService( $services, self::RANGE_CHECKER_HELPER ); |
|
122 | + public static function getRangeCheckerHelper(MediaWikiServices $services = null) { |
|
123 | + return self::getService($services, self::RANGE_CHECKER_HELPER); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
127 | 127 | * @param MediaWikiServices|null $services |
128 | 128 | * @return SparqlHelper |
129 | 129 | */ |
130 | - public static function getSparqlHelper( MediaWikiServices $services = null ) { |
|
131 | - return self::getService( $services, self::SPARQL_HELPER ); |
|
130 | + public static function getSparqlHelper(MediaWikiServices $services = null) { |
|
131 | + return self::getService($services, self::SPARQL_HELPER); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
135 | 135 | * @param MediaWikiServices|null $services |
136 | 136 | * @return TypeCheckerHelper |
137 | 137 | */ |
138 | - public static function getTypeCheckerHelper( MediaWikiServices $services = null ) { |
|
139 | - return self::getService( $services, self::TYPE_CHECKER_HELPER ); |
|
138 | + public static function getTypeCheckerHelper(MediaWikiServices $services = null) { |
|
139 | + return self::getService($services, self::TYPE_CHECKER_HELPER); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
143 | 143 | * @param MediaWikiServices|null $services |
144 | 144 | * @return DelegatingConstraintChecker |
145 | 145 | */ |
146 | - public static function getDelegatingConstraintChecker( MediaWikiServices $services = null ) { |
|
147 | - return self::getService( $services, self::DELEGATING_CONSTRAINT_CHECKER ); |
|
146 | + public static function getDelegatingConstraintChecker(MediaWikiServices $services = null) { |
|
147 | + return self::getService($services, self::DELEGATING_CONSTRAINT_CHECKER); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |
151 | 151 | * @param MediaWikiServices|null $services |
152 | 152 | * @return ResultsSource |
153 | 153 | */ |
154 | - public static function getResultsSource( MediaWikiServices $services = null ) { |
|
155 | - return self::getService( $services, self::RESULTS_SOURCE ); |
|
154 | + public static function getResultsSource(MediaWikiServices $services = null) { |
|
155 | + return self::getService($services, self::RESULTS_SOURCE); |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | } |
@@ -6,11 +6,11 @@ |
||
6 | 6 | use Wikibase\Repo\WikibaseRepo; |
7 | 7 | |
8 | 8 | return [ |
9 | - WikibaseServices::ENTITY_LOOKUP => function( MediaWikiServices $services ) { |
|
9 | + WikibaseServices::ENTITY_LOOKUP => function(MediaWikiServices $services) { |
|
10 | 10 | return WikibaseRepo::getDefaultInstance()->getEntityLookup(); |
11 | 11 | }, |
12 | 12 | |
13 | - WikibaseServices::PROPERTY_DATA_TYPE_LOOKUP => function( MediaWikiServices $services ) { |
|
13 | + WikibaseServices::PROPERTY_DATA_TYPE_LOOKUP => function(MediaWikiServices $services) { |
|
14 | 14 | return WikibaseRepo::getDefaultInstance()->getPropertyDataTypeLookup(); |
15 | 15 | }, |
16 | 16 | ]; |
@@ -74,17 +74,17 @@ discard block |
||
74 | 74 | * |
75 | 75 | * @return self |
76 | 76 | */ |
77 | - public static function newFromGlobalState( ApiMain $main, $name, $prefix = '' ) { |
|
77 | + public static function newFromGlobalState(ApiMain $main, $name, $prefix = '') { |
|
78 | 78 | $repo = WikibaseRepo::getDefaultInstance(); |
79 | - $helperFactory = $repo->getApiHelperFactory( RequestContext::getMain() ); |
|
79 | + $helperFactory = $repo->getApiHelperFactory(RequestContext::getMain()); |
|
80 | 80 | $language = $repo->getUserLanguage(); |
81 | 81 | |
82 | 82 | $entityIdHtmlLinkFormatterFactory = $repo->getEntityIdHtmlLinkFormatterFactory(); |
83 | - $entityIdHtmlLinkFormatter = $entityIdHtmlLinkFormatterFactory->getEntityIdFormatter( $language ); |
|
83 | + $entityIdHtmlLinkFormatter = $entityIdHtmlLinkFormatterFactory->getEntityIdFormatter($language); |
|
84 | 84 | $formatterOptions = new FormatterOptions(); |
85 | - $formatterOptions->setOption( SnakFormatter::OPT_LANG, $language->getCode() ); |
|
85 | + $formatterOptions->setOption(SnakFormatter::OPT_LANG, $language->getCode()); |
|
86 | 86 | $valueFormatterFactory = $repo->getValueFormatterFactory(); |
87 | - $dataValueFormatter = $valueFormatterFactory->getValueFormatter( SnakFormatter::FORMAT_HTML, $formatterOptions ); |
|
87 | + $dataValueFormatter = $valueFormatterFactory->getValueFormatter(SnakFormatter::FORMAT_HTML, $formatterOptions); |
|
88 | 88 | $config = MediaWikiServices::getInstance()->getMainConfig(); |
89 | 89 | $violationMessageRenderer = new MultilingualTextViolationMessageRenderer( |
90 | 90 | $entityIdHtmlLinkFormatter, |
@@ -124,9 +124,9 @@ discard block |
||
124 | 124 | StatementGuidParser $statementGuidParser, |
125 | 125 | IBufferingStatsdDataFactory $dataFactory |
126 | 126 | ) { |
127 | - parent::__construct( $main, $name, $prefix ); |
|
127 | + parent::__construct($main, $name, $prefix); |
|
128 | 128 | |
129 | - $this->apiErrorReporter = $apiHelperFactory->getErrorReporter( $this ); |
|
129 | + $this->apiErrorReporter = $apiHelperFactory->getErrorReporter($this); |
|
130 | 130 | $this->delegatingConstraintChecker = $delegatingConstraintChecker; |
131 | 131 | $this->violationMessageRenderer = $violationMessageRenderer; |
132 | 132 | $this->statementGuidParser = $statementGuidParser; |
@@ -141,39 +141,39 @@ discard block |
||
141 | 141 | $params = $this->extractRequestParams(); |
142 | 142 | $result = $this->getResult(); |
143 | 143 | |
144 | - $propertyIds = $this->parsePropertyIds( $params[self::PARAM_PROPERTY_ID] ); |
|
145 | - $constraintIds = $this->parseConstraintIds( $params[self::PARAM_CONSTRAINT_ID] ); |
|
144 | + $propertyIds = $this->parsePropertyIds($params[self::PARAM_PROPERTY_ID]); |
|
145 | + $constraintIds = $this->parseConstraintIds($params[self::PARAM_CONSTRAINT_ID]); |
|
146 | 146 | |
147 | - $this->checkPropertyIds( $propertyIds, $result ); |
|
148 | - $this->checkConstraintIds( $constraintIds, $result ); |
|
147 | + $this->checkPropertyIds($propertyIds, $result); |
|
148 | + $this->checkConstraintIds($constraintIds, $result); |
|
149 | 149 | |
150 | - $result->addValue( null, 'success', 1 ); |
|
150 | + $result->addValue(null, 'success', 1); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | /** |
154 | 154 | * @param array|null $propertyIdSerializations |
155 | 155 | * @return PropertyId[] |
156 | 156 | */ |
157 | - private function parsePropertyIds( $propertyIdSerializations ) { |
|
158 | - if ( $propertyIdSerializations === null ) { |
|
157 | + private function parsePropertyIds($propertyIdSerializations) { |
|
158 | + if ($propertyIdSerializations === null) { |
|
159 | 159 | return []; |
160 | - } elseif ( empty( $propertyIdSerializations ) ) { |
|
160 | + } elseif (empty($propertyIdSerializations)) { |
|
161 | 161 | $this->apiErrorReporter->dieError( |
162 | - 'If ' . self::PARAM_PROPERTY_ID . ' is specified, it must be nonempty.', |
|
162 | + 'If '.self::PARAM_PROPERTY_ID.' is specified, it must be nonempty.', |
|
163 | 163 | 'no-data' |
164 | 164 | ); |
165 | 165 | } |
166 | 166 | |
167 | 167 | return array_map( |
168 | - function( $propertyIdSerialization ) { |
|
168 | + function($propertyIdSerialization) { |
|
169 | 169 | try { |
170 | - return new PropertyId( $propertyIdSerialization ); |
|
171 | - } catch ( InvalidArgumentException $e ) { |
|
170 | + return new PropertyId($propertyIdSerialization); |
|
171 | + } catch (InvalidArgumentException $e) { |
|
172 | 172 | $this->apiErrorReporter->dieError( |
173 | 173 | "Invalid id: $propertyIdSerialization", |
174 | 174 | 'invalid-property-id', |
175 | 175 | 0, // default argument |
176 | - [ self::PARAM_PROPERTY_ID => $propertyIdSerialization ] |
|
176 | + [self::PARAM_PROPERTY_ID => $propertyIdSerialization] |
|
177 | 177 | ); |
178 | 178 | } |
179 | 179 | }, |
@@ -185,35 +185,35 @@ discard block |
||
185 | 185 | * @param array|null $constraintIds |
186 | 186 | * @return string[] |
187 | 187 | */ |
188 | - private function parseConstraintIds( $constraintIds ) { |
|
189 | - if ( $constraintIds === null ) { |
|
188 | + private function parseConstraintIds($constraintIds) { |
|
189 | + if ($constraintIds === null) { |
|
190 | 190 | return []; |
191 | - } elseif ( empty( $constraintIds ) ) { |
|
191 | + } elseif (empty($constraintIds)) { |
|
192 | 192 | $this->apiErrorReporter->dieError( |
193 | - 'If ' . self::PARAM_CONSTRAINT_ID . ' is specified, it must be nonempty.', |
|
193 | + 'If '.self::PARAM_CONSTRAINT_ID.' is specified, it must be nonempty.', |
|
194 | 194 | 'no-data' |
195 | 195 | ); |
196 | 196 | } |
197 | 197 | |
198 | 198 | return array_map( |
199 | - function( $constraintId ) { |
|
199 | + function($constraintId) { |
|
200 | 200 | try { |
201 | - $propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId(); |
|
202 | - if ( !$propertyId instanceof PropertyId ) { |
|
201 | + $propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId(); |
|
202 | + if (!$propertyId instanceof PropertyId) { |
|
203 | 203 | $this->apiErrorReporter->dieError( |
204 | 204 | "Invalid property ID: {$propertyId->getSerialization()}", |
205 | 205 | 'invalid-property-id', |
206 | 206 | 0, // default argument |
207 | - [ self::PARAM_CONSTRAINT_ID => $constraintId ] |
|
207 | + [self::PARAM_CONSTRAINT_ID => $constraintId] |
|
208 | 208 | ); |
209 | 209 | } |
210 | 210 | return $constraintId; |
211 | - } catch ( StatementGuidParsingException $e ) { |
|
211 | + } catch (StatementGuidParsingException $e) { |
|
212 | 212 | $this->apiErrorReporter->dieError( |
213 | 213 | "Invalid statement GUID: $constraintId", |
214 | 214 | 'invalid-guid', |
215 | 215 | 0, // default argument |
216 | - [ self::PARAM_CONSTRAINT_ID => $constraintId ] |
|
216 | + [self::PARAM_CONSTRAINT_ID => $constraintId] |
|
217 | 217 | ); |
218 | 218 | } |
219 | 219 | }, |
@@ -225,12 +225,12 @@ discard block |
||
225 | 225 | * @param PropertyId[] $propertyIds |
226 | 226 | * @param ApiResult $result |
227 | 227 | */ |
228 | - private function checkPropertyIds( array $propertyIds, ApiResult $result ) { |
|
229 | - foreach ( $propertyIds as $propertyId ) { |
|
230 | - $result->addArrayType( $this->getResultPathForPropertyId( $propertyId ), 'assoc' ); |
|
231 | - $allConstraintExceptions = $this->delegatingConstraintChecker->checkConstraintParametersOnPropertyId( $propertyId ); |
|
232 | - foreach ( $allConstraintExceptions as $constraintId => $constraintParameterExceptions ) { |
|
233 | - $this->addConstraintParameterExceptionsToResult( $constraintId, $constraintParameterExceptions, $result ); |
|
228 | + private function checkPropertyIds(array $propertyIds, ApiResult $result) { |
|
229 | + foreach ($propertyIds as $propertyId) { |
|
230 | + $result->addArrayType($this->getResultPathForPropertyId($propertyId), 'assoc'); |
|
231 | + $allConstraintExceptions = $this->delegatingConstraintChecker->checkConstraintParametersOnPropertyId($propertyId); |
|
232 | + foreach ($allConstraintExceptions as $constraintId => $constraintParameterExceptions) { |
|
233 | + $this->addConstraintParameterExceptionsToResult($constraintId, $constraintParameterExceptions, $result); |
|
234 | 234 | } |
235 | 235 | } |
236 | 236 | } |
@@ -239,14 +239,14 @@ discard block |
||
239 | 239 | * @param string[] $constraintIds |
240 | 240 | * @param ApiResult $result |
241 | 241 | */ |
242 | - private function checkConstraintIds( array $constraintIds, ApiResult $result ) { |
|
243 | - foreach ( $constraintIds as $constraintId ) { |
|
244 | - if ( $result->getResultData( $this->getResultPathForConstraintId( $constraintId ) ) ) { |
|
242 | + private function checkConstraintIds(array $constraintIds, ApiResult $result) { |
|
243 | + foreach ($constraintIds as $constraintId) { |
|
244 | + if ($result->getResultData($this->getResultPathForConstraintId($constraintId))) { |
|
245 | 245 | // already checked as part of checkPropertyIds() |
246 | 246 | continue; |
247 | 247 | } |
248 | - $constraintParameterExceptions = $this->delegatingConstraintChecker->checkConstraintParametersOnConstraintId( $constraintId ); |
|
249 | - $this->addConstraintParameterExceptionsToResult( $constraintId, $constraintParameterExceptions, $result ); |
|
248 | + $constraintParameterExceptions = $this->delegatingConstraintChecker->checkConstraintParametersOnConstraintId($constraintId); |
|
249 | + $this->addConstraintParameterExceptionsToResult($constraintId, $constraintParameterExceptions, $result); |
|
250 | 250 | } |
251 | 251 | } |
252 | 252 | |
@@ -254,17 +254,17 @@ discard block |
||
254 | 254 | * @param PropertyId $propertyId |
255 | 255 | * @return string[] |
256 | 256 | */ |
257 | - private function getResultPathForPropertyId( PropertyId $propertyId ) { |
|
258 | - return [ $this->getModuleName(), $propertyId->getSerialization() ]; |
|
257 | + private function getResultPathForPropertyId(PropertyId $propertyId) { |
|
258 | + return [$this->getModuleName(), $propertyId->getSerialization()]; |
|
259 | 259 | } |
260 | 260 | |
261 | 261 | /** |
262 | 262 | * @param string $constraintId |
263 | 263 | * @return string[] |
264 | 264 | */ |
265 | - private function getResultPathForConstraintId( $constraintId ) { |
|
266 | - $propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId(); |
|
267 | - return array_merge( $this->getResultPathForPropertyId( $propertyId ), [ $constraintId ] ); |
|
265 | + private function getResultPathForConstraintId($constraintId) { |
|
266 | + $propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId(); |
|
267 | + return array_merge($this->getResultPathForPropertyId($propertyId), [$constraintId]); |
|
268 | 268 | } |
269 | 269 | |
270 | 270 | /** |
@@ -274,9 +274,9 @@ discard block |
||
274 | 274 | * @param ConstraintParameterException[]|null $constraintParameterExceptions |
275 | 275 | * @param ApiResult $result |
276 | 276 | */ |
277 | - private function addConstraintParameterExceptionsToResult( $constraintId, $constraintParameterExceptions, ApiResult $result ) { |
|
278 | - $path = $this->getResultPathForConstraintId( $constraintId ); |
|
279 | - if ( $constraintParameterExceptions === null ) { |
|
277 | + private function addConstraintParameterExceptionsToResult($constraintId, $constraintParameterExceptions, ApiResult $result) { |
|
278 | + $path = $this->getResultPathForConstraintId($constraintId); |
|
279 | + if ($constraintParameterExceptions === null) { |
|
280 | 280 | $result->addValue( |
281 | 281 | $path, |
282 | 282 | self::KEY_STATUS, |
@@ -286,12 +286,12 @@ discard block |
||
286 | 286 | $result->addValue( |
287 | 287 | $path, |
288 | 288 | self::KEY_STATUS, |
289 | - empty( $constraintParameterExceptions ) ? self::STATUS_OKAY : self::STATUS_NOT_OKAY |
|
289 | + empty($constraintParameterExceptions) ? self::STATUS_OKAY : self::STATUS_NOT_OKAY |
|
290 | 290 | ); |
291 | 291 | $result->addValue( |
292 | 292 | $path, |
293 | 293 | self::KEY_PROBLEMS, |
294 | - array_map( [ $this, 'formatConstraintParameterException' ], $constraintParameterExceptions ) |
|
294 | + array_map([$this, 'formatConstraintParameterException'], $constraintParameterExceptions) |
|
295 | 295 | ); |
296 | 296 | } |
297 | 297 | } |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | * @param ConstraintParameterException $e |
303 | 303 | * @return string[] |
304 | 304 | */ |
305 | - private function formatConstraintParameterException( ConstraintParameterException $e ) { |
|
305 | + private function formatConstraintParameterException(ConstraintParameterException $e) { |
|
306 | 306 | return [ |
307 | 307 | self::KEY_MESSAGE_HTML => $this->violationMessageRenderer->render( |
308 | 308 | $e->getViolationMessage() |
@@ -39,13 +39,13 @@ discard block |
||
39 | 39 | EntityIdLookup $entityIdLookup, |
40 | 40 | RdfVocabulary $rdfVocabulary |
41 | 41 | ) { |
42 | - parent::__construct( $page, $context ); |
|
42 | + parent::__construct($page, $context); |
|
43 | 43 | $this->resultsSource = $resultsSource; |
44 | 44 | $this->entityIdLookup = $entityIdLookup; |
45 | 45 | $this->rdfVocabulary = $rdfVocabulary; |
46 | 46 | } |
47 | 47 | |
48 | - public static function newFromGlobalState( Page $page, IContextSource $context = null ) { |
|
48 | + public static function newFromGlobalState(Page $page, IContextSource $context = null) { |
|
49 | 49 | $repo = WikibaseRepo::getDefaultInstance(); |
50 | 50 | |
51 | 51 | return new static( |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | * @param string $guid |
93 | 93 | * @return string |
94 | 94 | */ |
95 | - private function cleanupGuid( $guid ) { |
|
96 | - return preg_replace( '/[^\w-]/', '-', $guid ); |
|
95 | + private function cleanupGuid($guid) { |
|
96 | + return preg_replace('/[^\w-]/', '-', $guid); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
@@ -105,51 +105,51 @@ discard block |
||
105 | 105 | $response = $this->getRequest()->response(); |
106 | 106 | $this->getOutput()->disable(); |
107 | 107 | |
108 | - if ( !$this->resultsSource instanceof CachingResultsSource ) { |
|
108 | + if (!$this->resultsSource instanceof CachingResultsSource) { |
|
109 | 109 | // TODO: make configurable whether only cached results are returned |
110 | - $response->statusHeader( 501 ); // Not Implemented |
|
110 | + $response->statusHeader(501); // Not Implemented |
|
111 | 111 | return null; |
112 | 112 | } |
113 | 113 | |
114 | - $entityId = $this->entityIdLookup->getEntityIdForTitle( $this->getTitle() ); |
|
115 | - if ( $entityId === null ) { |
|
116 | - $response->statusHeader( 404 ); // Not Found |
|
114 | + $entityId = $this->entityIdLookup->getEntityIdForTitle($this->getTitle()); |
|
115 | + if ($entityId === null) { |
|
116 | + $response->statusHeader(404); // Not Found |
|
117 | 117 | return null; |
118 | 118 | } |
119 | 119 | |
120 | - $results = $this->resultsSource->getStoredResults( $entityId ); |
|
121 | - if ( $results === null ) { |
|
122 | - $response->statusHeader( 204 ); // No Content |
|
120 | + $results = $this->resultsSource->getStoredResults($entityId); |
|
121 | + if ($results === null) { |
|
122 | + $response->statusHeader(204); // No Content |
|
123 | 123 | return null; |
124 | 124 | } |
125 | 125 | |
126 | 126 | $format = 'ttl'; // TODO: make format an option |
127 | 127 | |
128 | 128 | $writerFactory = new RdfWriterFactory(); |
129 | - $formatName = $writerFactory->getFormatName( $format ); |
|
130 | - $contentType = $writerFactory->getMimeTypes( $formatName )[0]; |
|
129 | + $formatName = $writerFactory->getFormatName($format); |
|
130 | + $contentType = $writerFactory->getMimeTypes($formatName)[0]; |
|
131 | 131 | |
132 | - $response->header( "Content-Type: $contentType; charset=UTF-8" ); |
|
132 | + $response->header("Content-Type: $contentType; charset=UTF-8"); |
|
133 | 133 | |
134 | - $writer = $writerFactory->getWriter( $formatName ); |
|
135 | - foreach ( [ RdfVocabulary::NS_STATEMENT, RdfVocabulary::NS_ONTOLOGY ] as $ns ) { |
|
136 | - $writer->prefix( $ns, $this->rdfVocabulary->getNamespaceURI( $ns ) ); |
|
134 | + $writer = $writerFactory->getWriter($formatName); |
|
135 | + foreach ([RdfVocabulary::NS_STATEMENT, RdfVocabulary::NS_ONTOLOGY] as $ns) { |
|
136 | + $writer->prefix($ns, $this->rdfVocabulary->getNamespaceURI($ns)); |
|
137 | 137 | } |
138 | 138 | $writer->start(); |
139 | 139 | |
140 | - foreach ( $results->getArray() as $checkResult ) { |
|
141 | - if ( $checkResult instanceof NullResult ) { |
|
140 | + foreach ($results->getArray() as $checkResult) { |
|
141 | + if ($checkResult instanceof NullResult) { |
|
142 | 142 | continue; |
143 | 143 | } |
144 | - if ( $checkResult->getStatus() === CheckResult::STATUS_BAD_PARAMETERS ) { |
|
144 | + if ($checkResult->getStatus() === CheckResult::STATUS_BAD_PARAMETERS) { |
|
145 | 145 | continue; |
146 | 146 | } |
147 | 147 | |
148 | - $writer->about( RdfVocabulary::NS_STATEMENT, |
|
149 | - $this->cleanupGuid( $checkResult->getContextCursor()->getStatementGuid() ) ) |
|
150 | - ->say( RdfVocabulary::NS_ONTOLOGY, 'hasViolationForConstraint' ) |
|
151 | - ->is( RdfVocabulary::NS_STATEMENT, |
|
152 | - $this->cleanupGuid( $checkResult->getConstraint()->getConstraintId() ) ); |
|
148 | + $writer->about(RdfVocabulary::NS_STATEMENT, |
|
149 | + $this->cleanupGuid($checkResult->getContextCursor()->getStatementGuid())) |
|
150 | + ->say(RdfVocabulary::NS_ONTOLOGY, 'hasViolationForConstraint') |
|
151 | + ->is(RdfVocabulary::NS_STATEMENT, |
|
152 | + $this->cleanupGuid($checkResult->getConstraint()->getConstraintId())); |
|
153 | 153 | } |
154 | 154 | $writer->finish(); |
155 | 155 | echo $writer->drain(); |
@@ -79,19 +79,19 @@ discard block |
||
79 | 79 | * |
80 | 80 | * @return self |
81 | 81 | */ |
82 | - public static function newFromGlobalState( ApiMain $main, $name, $prefix = '' ) { |
|
82 | + public static function newFromGlobalState(ApiMain $main, $name, $prefix = '') { |
|
83 | 83 | $repo = WikibaseRepo::getDefaultInstance(); |
84 | 84 | |
85 | 85 | $language = $repo->getUserLanguage(); |
86 | 86 | $formatterOptions = new FormatterOptions(); |
87 | - $formatterOptions->setOption( SnakFormatter::OPT_LANG, $language->getCode() ); |
|
87 | + $formatterOptions->setOption(SnakFormatter::OPT_LANG, $language->getCode()); |
|
88 | 88 | $valueFormatterFactory = $repo->getValueFormatterFactory(); |
89 | - $valueFormatter = $valueFormatterFactory->getValueFormatter( SnakFormatter::FORMAT_HTML, $formatterOptions ); |
|
89 | + $valueFormatter = $valueFormatterFactory->getValueFormatter(SnakFormatter::FORMAT_HTML, $formatterOptions); |
|
90 | 90 | |
91 | 91 | $entityIdHtmlLinkFormatterFactory = $repo->getEntityIdHtmlLinkFormatterFactory(); |
92 | - $entityIdHtmlLinkFormatter = $entityIdHtmlLinkFormatterFactory->getEntityIdFormatter( $language ); |
|
92 | + $entityIdHtmlLinkFormatter = $entityIdHtmlLinkFormatterFactory->getEntityIdFormatter($language); |
|
93 | 93 | $entityIdLabelFormatterFactory = new EntityIdLabelFormatterFactory(); |
94 | - $entityIdLabelFormatter = $entityIdLabelFormatterFactory->getEntityIdFormatter( $language ); |
|
94 | + $entityIdLabelFormatter = $entityIdLabelFormatterFactory->getEntityIdFormatter($language); |
|
95 | 95 | $config = MediaWikiServices::getInstance()->getMainConfig(); |
96 | 96 | $dataFactory = MediaWikiServices::getInstance()->getStatsdDataFactory(); |
97 | 97 | |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | $prefix, |
114 | 114 | $repo->getEntityIdParser(), |
115 | 115 | $repo->getStatementGuidValidator(), |
116 | - $repo->getApiHelperFactory( RequestContext::getMain() ), |
|
116 | + $repo->getApiHelperFactory(RequestContext::getMain()), |
|
117 | 117 | $resultsSource, |
118 | 118 | $checkResultsRenderer, |
119 | 119 | $dataFactory |
@@ -142,11 +142,11 @@ discard block |
||
142 | 142 | CheckResultsRenderer $checkResultsRenderer, |
143 | 143 | IBufferingStatsdDataFactory $dataFactory |
144 | 144 | ) { |
145 | - parent::__construct( $main, $name, $prefix ); |
|
145 | + parent::__construct($main, $name, $prefix); |
|
146 | 146 | $this->entityIdParser = $entityIdParser; |
147 | 147 | $this->statementGuidValidator = $statementGuidValidator; |
148 | - $this->resultBuilder = $apiHelperFactory->getResultBuilder( $this ); |
|
149 | - $this->errorReporter = $apiHelperFactory->getErrorReporter( $this ); |
|
148 | + $this->resultBuilder = $apiHelperFactory->getResultBuilder($this); |
|
149 | + $this->errorReporter = $apiHelperFactory->getErrorReporter($this); |
|
150 | 150 | $this->resultsSource = $resultsSource; |
151 | 151 | $this->checkResultsRenderer = $checkResultsRenderer; |
152 | 152 | $this->dataFactory = $dataFactory; |
@@ -162,9 +162,9 @@ discard block |
||
162 | 162 | |
163 | 163 | $params = $this->extractRequestParams(); |
164 | 164 | |
165 | - $this->validateParameters( $params ); |
|
166 | - $entityIds = $this->parseEntityIds( $params ); |
|
167 | - $claimIds = $this->parseClaimIds( $params ); |
|
165 | + $this->validateParameters($params); |
|
166 | + $entityIds = $this->parseEntityIds($params); |
|
167 | + $claimIds = $this->parseClaimIds($params); |
|
168 | 168 | $constraintIDs = $params[self::PARAM_CONSTRAINT_ID]; |
169 | 169 | $statuses = $params[self::PARAM_STATUS]; |
170 | 170 | |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | ) |
181 | 181 | )->getArray() |
182 | 182 | ); |
183 | - $this->resultBuilder->markSuccess( 1 ); |
|
183 | + $this->resultBuilder->markSuccess(1); |
|
184 | 184 | } |
185 | 185 | |
186 | 186 | /** |
@@ -188,24 +188,24 @@ discard block |
||
188 | 188 | * |
189 | 189 | * @return EntityId[] |
190 | 190 | */ |
191 | - private function parseEntityIds( array $params ) { |
|
191 | + private function parseEntityIds(array $params) { |
|
192 | 192 | $ids = $params[self::PARAM_ID]; |
193 | 193 | |
194 | - if ( $ids === null ) { |
|
194 | + if ($ids === null) { |
|
195 | 195 | return []; |
196 | - } elseif ( $ids === [] ) { |
|
196 | + } elseif ($ids === []) { |
|
197 | 197 | $this->errorReporter->dieError( |
198 | - 'If ' . self::PARAM_ID . ' is specified, it must be nonempty.', 'no-data' ); |
|
198 | + 'If '.self::PARAM_ID.' is specified, it must be nonempty.', 'no-data' ); |
|
199 | 199 | } |
200 | 200 | |
201 | - return array_map( function ( $id ) { |
|
201 | + return array_map(function($id) { |
|
202 | 202 | try { |
203 | - return $this->entityIdParser->parse( $id ); |
|
204 | - } catch ( EntityIdParsingException $e ) { |
|
203 | + return $this->entityIdParser->parse($id); |
|
204 | + } catch (EntityIdParsingException $e) { |
|
205 | 205 | $this->errorReporter->dieError( |
206 | - "Invalid id: $id", 'invalid-entity-id', 0, [ self::PARAM_ID => $id ] ); |
|
206 | + "Invalid id: $id", 'invalid-entity-id', 0, [self::PARAM_ID => $id] ); |
|
207 | 207 | } |
208 | - }, $ids ); |
|
208 | + }, $ids); |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | /** |
@@ -213,35 +213,35 @@ discard block |
||
213 | 213 | * |
214 | 214 | * @return string[] |
215 | 215 | */ |
216 | - private function parseClaimIds( array $params ) { |
|
216 | + private function parseClaimIds(array $params) { |
|
217 | 217 | $ids = $params[self::PARAM_CLAIM_ID]; |
218 | 218 | |
219 | - if ( $ids === null ) { |
|
219 | + if ($ids === null) { |
|
220 | 220 | return []; |
221 | - } elseif ( $ids === [] ) { |
|
221 | + } elseif ($ids === []) { |
|
222 | 222 | $this->errorReporter->dieError( |
223 | - 'If ' . self::PARAM_CLAIM_ID . ' is specified, it must be nonempty.', 'no-data' ); |
|
223 | + 'If '.self::PARAM_CLAIM_ID.' is specified, it must be nonempty.', 'no-data' ); |
|
224 | 224 | } |
225 | 225 | |
226 | - foreach ( $ids as $id ) { |
|
227 | - if ( !$this->statementGuidValidator->validate( $id ) ) { |
|
226 | + foreach ($ids as $id) { |
|
227 | + if (!$this->statementGuidValidator->validate($id)) { |
|
228 | 228 | $this->errorReporter->dieError( |
229 | - "Invalid claim id: $id", 'invalid-guid', 0, [ self::PARAM_CLAIM_ID => $id ] ); |
|
229 | + "Invalid claim id: $id", 'invalid-guid', 0, [self::PARAM_CLAIM_ID => $id] ); |
|
230 | 230 | } |
231 | 231 | } |
232 | 232 | |
233 | 233 | return $ids; |
234 | 234 | } |
235 | 235 | |
236 | - private function validateParameters( array $params ) { |
|
237 | - if ( $params[self::PARAM_CONSTRAINT_ID] !== null |
|
238 | - && empty( $params[self::PARAM_CONSTRAINT_ID] ) |
|
236 | + private function validateParameters(array $params) { |
|
237 | + if ($params[self::PARAM_CONSTRAINT_ID] !== null |
|
238 | + && empty($params[self::PARAM_CONSTRAINT_ID]) |
|
239 | 239 | ) { |
240 | 240 | $paramConstraintId = self::PARAM_CONSTRAINT_ID; |
241 | 241 | $this->errorReporter->dieError( |
242 | 242 | "If $paramConstraintId is specified, it must be nonempty.", 'no-data' ); |
243 | 243 | } |
244 | - if ( $params[self::PARAM_ID] === null && $params[self::PARAM_CLAIM_ID] === null ) { |
|
244 | + if ($params[self::PARAM_ID] === null && $params[self::PARAM_CLAIM_ID] === null) { |
|
245 | 245 | $paramId = self::PARAM_ID; |
246 | 246 | $paramClaimId = self::PARAM_CLAIM_ID; |
247 | 247 | $this->errorReporter->dieError( |
@@ -281,11 +281,11 @@ discard block |
||
281 | 281 | ], |
282 | 282 | ApiBase::PARAM_ISMULTI => true, |
283 | 283 | ApiBase::PARAM_ALL => true, |
284 | - ApiBase::PARAM_DFLT => implode( '|', [ |
|
284 | + ApiBase::PARAM_DFLT => implode('|', [ |
|
285 | 285 | CheckResult::STATUS_VIOLATION, |
286 | 286 | CheckResult::STATUS_WARNING, |
287 | 287 | CheckResult::STATUS_BAD_PARAMETERS, |
288 | - ] ), |
|
288 | + ]), |
|
289 | 289 | ApiBase::PARAM_HELP_MSG_PER_VALUE => [], |
290 | 290 | ], |
291 | 291 | ]; |
@@ -35,124 +35,124 @@ discard block |
||
35 | 35 | use WikibaseQuality\ConstraintReport\ConstraintCheck\Checker\ValueTypeChecker; |
36 | 36 | |
37 | 37 | return [ |
38 | - ConstraintCheckerServices::CONFLICTS_WITH_CHECKER => function( MediaWikiServices $services ) { |
|
38 | + ConstraintCheckerServices::CONFLICTS_WITH_CHECKER => function(MediaWikiServices $services) { |
|
39 | 39 | return new ConflictsWithChecker( |
40 | - WikibaseServices::getEntityLookup( $services ), |
|
41 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
42 | - ConstraintsServices::getConnectionCheckerHelper( $services ) |
|
40 | + WikibaseServices::getEntityLookup($services), |
|
41 | + ConstraintsServices::getConstraintParameterParser($services), |
|
42 | + ConstraintsServices::getConnectionCheckerHelper($services) |
|
43 | 43 | ); |
44 | 44 | }, |
45 | 45 | |
46 | - ConstraintCheckerServices::ITEM_CHECKER => function( MediaWikiServices $services ) { |
|
46 | + ConstraintCheckerServices::ITEM_CHECKER => function(MediaWikiServices $services) { |
|
47 | 47 | return new ItemChecker( |
48 | - WikibaseServices::getEntityLookup( $services ), |
|
49 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
50 | - ConstraintsServices::getConnectionCheckerHelper( $services ) |
|
48 | + WikibaseServices::getEntityLookup($services), |
|
49 | + ConstraintsServices::getConstraintParameterParser($services), |
|
50 | + ConstraintsServices::getConnectionCheckerHelper($services) |
|
51 | 51 | ); |
52 | 52 | }, |
53 | 53 | |
54 | - ConstraintCheckerServices::TARGET_REQUIRED_CLAIM_CHECKER => function( MediaWikiServices $services ) { |
|
54 | + ConstraintCheckerServices::TARGET_REQUIRED_CLAIM_CHECKER => function(MediaWikiServices $services) { |
|
55 | 55 | return new TargetRequiredClaimChecker( |
56 | - WikibaseServices::getEntityLookup( $services ), |
|
57 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
58 | - ConstraintsServices::getConnectionCheckerHelper( $services ) |
|
56 | + WikibaseServices::getEntityLookup($services), |
|
57 | + ConstraintsServices::getConstraintParameterParser($services), |
|
58 | + ConstraintsServices::getConnectionCheckerHelper($services) |
|
59 | 59 | ); |
60 | 60 | }, |
61 | 61 | |
62 | - ConstraintCheckerServices::SYMMETRIC_CHECKER => function( MediaWikiServices $services ) { |
|
62 | + ConstraintCheckerServices::SYMMETRIC_CHECKER => function(MediaWikiServices $services) { |
|
63 | 63 | return new SymmetricChecker( |
64 | - WikibaseServices::getEntityLookup( $services ), |
|
65 | - ConstraintsServices::getConnectionCheckerHelper( $services ) |
|
64 | + WikibaseServices::getEntityLookup($services), |
|
65 | + ConstraintsServices::getConnectionCheckerHelper($services) |
|
66 | 66 | ); |
67 | 67 | }, |
68 | 68 | |
69 | - ConstraintCheckerServices::INVERSE_CHECKER => function( MediaWikiServices $services ) { |
|
69 | + ConstraintCheckerServices::INVERSE_CHECKER => function(MediaWikiServices $services) { |
|
70 | 70 | return new InverseChecker( |
71 | - WikibaseServices::getEntityLookup( $services ), |
|
72 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
73 | - ConstraintsServices::getConnectionCheckerHelper( $services ) |
|
71 | + WikibaseServices::getEntityLookup($services), |
|
72 | + ConstraintsServices::getConstraintParameterParser($services), |
|
73 | + ConstraintsServices::getConnectionCheckerHelper($services) |
|
74 | 74 | ); |
75 | 75 | }, |
76 | 76 | |
77 | - ConstraintCheckerServices::QUALIFIER_CHECKER => function( MediaWikiServices $services ) { |
|
77 | + ConstraintCheckerServices::QUALIFIER_CHECKER => function(MediaWikiServices $services) { |
|
78 | 78 | return new QualifierChecker(); |
79 | 79 | }, |
80 | 80 | |
81 | - ConstraintCheckerServices::QUALIFIERS_CHECKER => function( MediaWikiServices $services ) { |
|
81 | + ConstraintCheckerServices::QUALIFIERS_CHECKER => function(MediaWikiServices $services) { |
|
82 | 82 | return new QualifiersChecker( |
83 | - ConstraintsServices::getConstraintParameterParser( $services ) |
|
83 | + ConstraintsServices::getConstraintParameterParser($services) |
|
84 | 84 | ); |
85 | 85 | }, |
86 | 86 | |
87 | - ConstraintCheckerServices::MANDATORY_QUALIFIERS_CHECKER => function( MediaWikiServices $services ) { |
|
87 | + ConstraintCheckerServices::MANDATORY_QUALIFIERS_CHECKER => function(MediaWikiServices $services) { |
|
88 | 88 | return new MandatoryQualifiersChecker( |
89 | - ConstraintsServices::getConstraintParameterParser( $services ) |
|
89 | + ConstraintsServices::getConstraintParameterParser($services) |
|
90 | 90 | ); |
91 | 91 | }, |
92 | 92 | |
93 | - ConstraintCheckerServices::RANGE_CHECKER => function( MediaWikiServices $services ) { |
|
93 | + ConstraintCheckerServices::RANGE_CHECKER => function(MediaWikiServices $services) { |
|
94 | 94 | return new RangeChecker( |
95 | - WikibaseServices::getPropertyDataTypeLookup( $services ), |
|
96 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
97 | - ConstraintsServices::getRangeCheckerHelper( $services ) |
|
95 | + WikibaseServices::getPropertyDataTypeLookup($services), |
|
96 | + ConstraintsServices::getConstraintParameterParser($services), |
|
97 | + ConstraintsServices::getRangeCheckerHelper($services) |
|
98 | 98 | ); |
99 | 99 | }, |
100 | 100 | |
101 | - ConstraintCheckerServices::DIFF_WITHIN_RANGE_CHECKER => function( MediaWikiServices $services ) { |
|
101 | + ConstraintCheckerServices::DIFF_WITHIN_RANGE_CHECKER => function(MediaWikiServices $services) { |
|
102 | 102 | return new DiffWithinRangeChecker( |
103 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
104 | - ConstraintsServices::getRangeCheckerHelper( $services ), |
|
103 | + ConstraintsServices::getConstraintParameterParser($services), |
|
104 | + ConstraintsServices::getRangeCheckerHelper($services), |
|
105 | 105 | $services->getMainConfig() |
106 | 106 | ); |
107 | 107 | }, |
108 | 108 | |
109 | - ConstraintCheckerServices::TYPE_CHECKER => function( MediaWikiServices $services ) { |
|
109 | + ConstraintCheckerServices::TYPE_CHECKER => function(MediaWikiServices $services) { |
|
110 | 110 | return new TypeChecker( |
111 | - WikibaseServices::getEntityLookup( $services ), |
|
112 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
113 | - ConstraintsServices::getTypeCheckerHelper( $services ), |
|
111 | + WikibaseServices::getEntityLookup($services), |
|
112 | + ConstraintsServices::getConstraintParameterParser($services), |
|
113 | + ConstraintsServices::getTypeCheckerHelper($services), |
|
114 | 114 | $services->getMainConfig() |
115 | 115 | ); |
116 | 116 | }, |
117 | 117 | |
118 | - ConstraintCheckerServices::VALUE_TYPE_CHECKER => function( MediaWikiServices $services ) { |
|
118 | + ConstraintCheckerServices::VALUE_TYPE_CHECKER => function(MediaWikiServices $services) { |
|
119 | 119 | return new ValueTypeChecker( |
120 | - WikibaseServices::getEntityLookup( $services ), |
|
121 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
122 | - ConstraintsServices::getTypeCheckerHelper( $services ), |
|
120 | + WikibaseServices::getEntityLookup($services), |
|
121 | + ConstraintsServices::getConstraintParameterParser($services), |
|
122 | + ConstraintsServices::getTypeCheckerHelper($services), |
|
123 | 123 | $services->getMainConfig() |
124 | 124 | ); |
125 | 125 | }, |
126 | 126 | |
127 | - ConstraintCheckerServices::SINGLE_VALUE_CHECKER => function( MediaWikiServices $services ) { |
|
127 | + ConstraintCheckerServices::SINGLE_VALUE_CHECKER => function(MediaWikiServices $services) { |
|
128 | 128 | return new SingleValueChecker( |
129 | - ConstraintsServices::getConstraintParameterParser( $services ) |
|
129 | + ConstraintsServices::getConstraintParameterParser($services) |
|
130 | 130 | ); |
131 | 131 | }, |
132 | 132 | |
133 | - ConstraintCheckerServices::MULTI_VALUE_CHECKER => function( MediaWikiServices $services ) { |
|
133 | + ConstraintCheckerServices::MULTI_VALUE_CHECKER => function(MediaWikiServices $services) { |
|
134 | 134 | return new MultiValueChecker( |
135 | - ConstraintsServices::getConstraintParameterParser( $services ) |
|
135 | + ConstraintsServices::getConstraintParameterParser($services) |
|
136 | 136 | ); |
137 | 137 | }, |
138 | 138 | |
139 | - ConstraintCheckerServices::UNIQUE_VALUE_CHECKER => function( MediaWikiServices $services ) { |
|
139 | + ConstraintCheckerServices::UNIQUE_VALUE_CHECKER => function(MediaWikiServices $services) { |
|
140 | 140 | // TODO return a different, dummy implementation if SPARQL is not available |
141 | 141 | return new UniqueValueChecker( |
142 | - ConstraintsServices::getSparqlHelper( $services ) |
|
142 | + ConstraintsServices::getSparqlHelper($services) |
|
143 | 143 | ); |
144 | 144 | }, |
145 | 145 | |
146 | - ConstraintCheckerServices::FORMAT_CHECKER => function( MediaWikiServices $services ) { |
|
146 | + ConstraintCheckerServices::FORMAT_CHECKER => function(MediaWikiServices $services) { |
|
147 | 147 | // TODO return a different, dummy implementation if SPARQL is not available |
148 | 148 | return new FormatChecker( |
149 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
149 | + ConstraintsServices::getConstraintParameterParser($services), |
|
150 | 150 | $services->getMainConfig(), |
151 | - ConstraintsServices::getSparqlHelper( $services ) |
|
151 | + ConstraintsServices::getSparqlHelper($services) |
|
152 | 152 | ); |
153 | 153 | }, |
154 | 154 | |
155 | - ConstraintCheckerServices::COMMONS_LINK_CHECKER => function( MediaWikiServices $services ) { |
|
155 | + ConstraintCheckerServices::COMMONS_LINK_CHECKER => function(MediaWikiServices $services) { |
|
156 | 156 | // TODO return different implementations for: |
157 | 157 | // - Wikimedia production ('commonswiki' database available) |
158 | 158 | // - InstantCommons wikis |
@@ -160,76 +160,76 @@ discard block |
||
160 | 160 | // - … |
161 | 161 | // ? (see also T169538) |
162 | 162 | return new CommonsLinkChecker( |
163 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
163 | + ConstraintsServices::getConstraintParameterParser($services), |
|
164 | 164 | $services->getTitleParser() |
165 | 165 | ); |
166 | 166 | }, |
167 | 167 | |
168 | - ConstraintCheckerServices::ONE_OF_CHECKER => function( MediaWikiServices $services ) { |
|
168 | + ConstraintCheckerServices::ONE_OF_CHECKER => function(MediaWikiServices $services) { |
|
169 | 169 | return new OneOfChecker( |
170 | - ConstraintsServices::getConstraintParameterParser( $services ) |
|
170 | + ConstraintsServices::getConstraintParameterParser($services) |
|
171 | 171 | ); |
172 | 172 | }, |
173 | 173 | |
174 | - ConstraintCheckerServices::VALUE_ONLY_CHECKER => function( MediaWikiServices $services ) { |
|
174 | + ConstraintCheckerServices::VALUE_ONLY_CHECKER => function(MediaWikiServices $services) { |
|
175 | 175 | return new ValueOnlyChecker(); |
176 | 176 | }, |
177 | 177 | |
178 | - ConstraintCheckerServices::REFERENCE_CHECKER => function( MediaWikiServices $services ) { |
|
178 | + ConstraintCheckerServices::REFERENCE_CHECKER => function(MediaWikiServices $services) { |
|
179 | 179 | return new ReferenceChecker(); |
180 | 180 | }, |
181 | 181 | |
182 | - ConstraintCheckerServices::NO_BOUNDS_CHECKER => function( MediaWikiServices $services ) { |
|
182 | + ConstraintCheckerServices::NO_BOUNDS_CHECKER => function(MediaWikiServices $services) { |
|
183 | 183 | return new NoBoundsChecker(); |
184 | 184 | }, |
185 | 185 | |
186 | - ConstraintCheckerServices::ALLOWED_UNITS_CHECKER => function( MediaWikiServices $services ) { |
|
186 | + ConstraintCheckerServices::ALLOWED_UNITS_CHECKER => function(MediaWikiServices $services) { |
|
187 | 187 | // TODO in the future, get UnitConverter from $services? |
188 | 188 | $repo = WikibaseRepo::getDefaultInstance(); |
189 | 189 | $unitConverter = $repo->getUnitConverter(); |
190 | 190 | |
191 | 191 | return new AllowedUnitsChecker( |
192 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
192 | + ConstraintsServices::getConstraintParameterParser($services), |
|
193 | 193 | $unitConverter |
194 | 194 | ); |
195 | 195 | }, |
196 | 196 | |
197 | - ConstraintCheckerServices::SINGLE_BEST_VALUE_CHECKER => function( MediaWikiServices $services ) { |
|
197 | + ConstraintCheckerServices::SINGLE_BEST_VALUE_CHECKER => function(MediaWikiServices $services) { |
|
198 | 198 | return new SingleBestValueChecker( |
199 | - ConstraintsServices::getConstraintParameterParser( $services ) |
|
199 | + ConstraintsServices::getConstraintParameterParser($services) |
|
200 | 200 | ); |
201 | 201 | }, |
202 | 202 | |
203 | - ConstraintCheckerServices::ENTITY_TYPE_CHECKER => function( MediaWikiServices $services ) { |
|
203 | + ConstraintCheckerServices::ENTITY_TYPE_CHECKER => function(MediaWikiServices $services) { |
|
204 | 204 | return new EntityTypeChecker( |
205 | - ConstraintsServices::getConstraintParameterParser( $services ) |
|
205 | + ConstraintsServices::getConstraintParameterParser($services) |
|
206 | 206 | ); |
207 | 207 | }, |
208 | 208 | |
209 | - ConstraintCheckerServices::NONE_OF_CHECKER => function( MediaWikiServices $services ) { |
|
209 | + ConstraintCheckerServices::NONE_OF_CHECKER => function(MediaWikiServices $services) { |
|
210 | 210 | return new NoneOfChecker( |
211 | - ConstraintsServices::getConstraintParameterParser( $services ) |
|
211 | + ConstraintsServices::getConstraintParameterParser($services) |
|
212 | 212 | ); |
213 | 213 | }, |
214 | 214 | |
215 | - ConstraintCheckerServices::INTEGER_CHECKER => function( MediaWikiServices $services ) { |
|
215 | + ConstraintCheckerServices::INTEGER_CHECKER => function(MediaWikiServices $services) { |
|
216 | 216 | return new IntegerChecker(); |
217 | 217 | }, |
218 | 218 | |
219 | - ConstraintCheckerServices::CITATION_NEEDED_CHECKER => function( MediaWikiServices $services ) { |
|
219 | + ConstraintCheckerServices::CITATION_NEEDED_CHECKER => function(MediaWikiServices $services) { |
|
220 | 220 | return new CitationNeededChecker(); |
221 | 221 | }, |
222 | 222 | |
223 | - ConstraintCheckerServices::PROPERTY_SCOPE_CHECKER => function( MediaWikiServices $services ) { |
|
223 | + ConstraintCheckerServices::PROPERTY_SCOPE_CHECKER => function(MediaWikiServices $services) { |
|
224 | 224 | return new PropertyScopeChecker( |
225 | - ConstraintsServices::getConstraintParameterParser( $services ) |
|
225 | + ConstraintsServices::getConstraintParameterParser($services) |
|
226 | 226 | ); |
227 | 227 | }, |
228 | 228 | |
229 | - ConstraintCheckerServices::CONTEMPORARY_CHECKER => function( MediaWikiServices $services ) { |
|
229 | + ConstraintCheckerServices::CONTEMPORARY_CHECKER => function(MediaWikiServices $services) { |
|
230 | 230 | return new ContemporaryChecker( |
231 | - WikibaseServices::getEntityLookup( $services ), |
|
232 | - ConstraintsServices::getRangeCheckerHelper( $services ), |
|
231 | + WikibaseServices::getEntityLookup($services), |
|
232 | + ConstraintsServices::getRangeCheckerHelper($services), |
|
233 | 233 | $services->getMainConfig() |
234 | 234 | ); |
235 | 235 | }, |