@@ -10,10 +10,10 @@ discard block |
||
| 10 | 10 | use WikibaseQuality\ConstraintReport\Job\UpdateConstraintsTableJob; |
| 11 | 11 | |
| 12 | 12 | // @codeCoverageIgnoreStart |
| 13 | -$basePath = getenv( "MW_INSTALL_PATH" ) !== false |
|
| 14 | - ? getenv( "MW_INSTALL_PATH" ) : __DIR__ . "/../../.."; |
|
| 13 | +$basePath = getenv("MW_INSTALL_PATH") !== false |
|
| 14 | + ? getenv("MW_INSTALL_PATH") : __DIR__."/../../.."; |
|
| 15 | 15 | |
| 16 | -require_once $basePath . "/maintenance/Maintenance.php"; |
|
| 16 | +require_once $basePath."/maintenance/Maintenance.php"; |
|
| 17 | 17 | // @codeCoverageIgnoreEnd |
| 18 | 18 | |
| 19 | 19 | /** |
@@ -42,56 +42,56 @@ discard block |
||
| 42 | 42 | |
| 43 | 43 | public function __construct() { |
| 44 | 44 | parent::__construct(); |
| 45 | - $this->newUpdateConstraintsTableJob = static function ( $propertyIdSerialization ) { |
|
| 45 | + $this->newUpdateConstraintsTableJob = static function($propertyIdSerialization) { |
|
| 46 | 46 | return UpdateConstraintsTableJob::newFromGlobalState( |
| 47 | 47 | Title::newMainPage(), |
| 48 | - [ 'propertyId' => $propertyIdSerialization ] |
|
| 48 | + ['propertyId' => $propertyIdSerialization] |
|
| 49 | 49 | ); |
| 50 | 50 | }; |
| 51 | 51 | |
| 52 | - $this->addDescription( 'Imports property constraints from statements on properties' ); |
|
| 53 | - $this->requireExtension( 'WikibaseQualityConstraints' ); |
|
| 54 | - $this->setBatchSize( 10 ); |
|
| 52 | + $this->addDescription('Imports property constraints from statements on properties'); |
|
| 53 | + $this->requireExtension('WikibaseQualityConstraints'); |
|
| 54 | + $this->setBatchSize(10); |
|
| 55 | 55 | |
| 56 | 56 | // Wikibase classes are not yet loaded, so setup services in a callback run in execute |
| 57 | 57 | // that can be overridden in tests. |
| 58 | - $this->setupServices = function () { |
|
| 58 | + $this->setupServices = function() { |
|
| 59 | 59 | $services = MediaWikiServices::getInstance(); |
| 60 | - $this->propertyInfoLookup = WikibaseRepo::getStore( $services )->getPropertyInfoLookup(); |
|
| 60 | + $this->propertyInfoLookup = WikibaseRepo::getStore($services)->getPropertyInfoLookup(); |
|
| 61 | 61 | }; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | public function execute() { |
| 65 | - ( $this->setupServices )(); |
|
| 66 | - if ( !$this->getConfig()->get( 'WBQualityConstraintsEnableConstraintsImportFromStatements' ) ) { |
|
| 67 | - $this->error( 'Constraint statements are not enabled. Aborting.' ); |
|
| 65 | + ($this->setupServices)(); |
|
| 66 | + if (!$this->getConfig()->get('WBQualityConstraintsEnableConstraintsImportFromStatements')) { |
|
| 67 | + $this->error('Constraint statements are not enabled. Aborting.'); |
|
| 68 | 68 | return; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | $propertyInfos = $this->propertyInfoLookup->getAllPropertyInfo(); |
| 72 | - $propertyIds = array_keys( $propertyInfos ); |
|
| 72 | + $propertyIds = array_keys($propertyInfos); |
|
| 73 | 73 | |
| 74 | - foreach ( array_chunk( $propertyIds, $this->getBatchSize() ) as $propertyIdsChunk ) { |
|
| 75 | - foreach ( $propertyIdsChunk as $propertyIdSerialization ) { |
|
| 76 | - $this->output( sprintf( |
|
| 74 | + foreach (array_chunk($propertyIds, $this->getBatchSize()) as $propertyIdsChunk) { |
|
| 75 | + foreach ($propertyIdsChunk as $propertyIdSerialization) { |
|
| 76 | + $this->output(sprintf( |
|
| 77 | 77 | 'Importing constraint statements for % 6s... ', |
| 78 | 78 | $propertyIdSerialization ), |
| 79 | 79 | $propertyIdSerialization |
| 80 | 80 | ); |
| 81 | - $startTime = microtime( true ); |
|
| 82 | - $job = ( $this->newUpdateConstraintsTableJob )( $propertyIdSerialization ); |
|
| 81 | + $startTime = microtime(true); |
|
| 82 | + $job = ($this->newUpdateConstraintsTableJob)($propertyIdSerialization); |
|
| 83 | 83 | $job->run(); |
| 84 | - $endTime = microtime( true ); |
|
| 85 | - $millis = ( $endTime - $startTime ) * 1000; |
|
| 86 | - $this->output( sprintf( 'done in % 6.2f ms.', $millis ), $propertyIdSerialization ); |
|
| 84 | + $endTime = microtime(true); |
|
| 85 | + $millis = ($endTime - $startTime) * 1000; |
|
| 86 | + $this->output(sprintf('done in % 6.2f ms.', $millis), $propertyIdSerialization); |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - $this->output( 'Waiting for replication... ', 'waitForReplication' ); |
|
| 90 | - $startTime = microtime( true ); |
|
| 89 | + $this->output('Waiting for replication... ', 'waitForReplication'); |
|
| 90 | + $startTime = microtime(true); |
|
| 91 | 91 | $this->waitForReplication(); |
| 92 | - $endTime = microtime( true ); |
|
| 93 | - $millis = ( $endTime - $startTime ) * 1000; |
|
| 94 | - $this->output( sprintf( 'done in % 6.2f ms.', $millis ), 'waitForReplication' ); |
|
| 92 | + $endTime = microtime(true); |
|
| 93 | + $millis = ($endTime - $startTime) * 1000; |
|
| 94 | + $this->output(sprintf('done in % 6.2f ms.', $millis), 'waitForReplication'); |
|
| 95 | 95 | } |
| 96 | 96 | } |
| 97 | 97 | |
@@ -143,14 +143,14 @@ discard block |
||
| 143 | 143 | ) { |
| 144 | 144 | $results = []; |
| 145 | 145 | $metadatas = []; |
| 146 | - if ( $this->canUseStoredResults( $entityIds, $claimIds, $constraintIds, $statuses ) ) { |
|
| 146 | + if ($this->canUseStoredResults($entityIds, $claimIds, $constraintIds, $statuses)) { |
|
| 147 | 147 | $storedEntityIds = []; |
| 148 | - foreach ( $entityIds as $entityId ) { |
|
| 149 | - $storedResults = $this->getStoredResults( $entityId ); |
|
| 150 | - if ( $storedResults !== null ) { |
|
| 151 | - $this->loggingHelper->logCheckConstraintsCacheHit( $entityId ); |
|
| 152 | - foreach ( $storedResults->getArray() as $checkResult ) { |
|
| 153 | - if ( $this->statusSelected( $statuses, $checkResult ) ) { |
|
| 148 | + foreach ($entityIds as $entityId) { |
|
| 149 | + $storedResults = $this->getStoredResults($entityId); |
|
| 150 | + if ($storedResults !== null) { |
|
| 151 | + $this->loggingHelper->logCheckConstraintsCacheHit($entityId); |
|
| 152 | + foreach ($storedResults->getArray() as $checkResult) { |
|
| 153 | + if ($this->statusSelected($statuses, $checkResult)) { |
|
| 154 | 154 | $results[] = $checkResult; |
| 155 | 155 | } |
| 156 | 156 | } |
@@ -158,19 +158,19 @@ discard block |
||
| 158 | 158 | $storedEntityIds[] = $entityId; |
| 159 | 159 | } |
| 160 | 160 | } |
| 161 | - $entityIds = array_values( array_diff( $entityIds, $storedEntityIds ) ); |
|
| 161 | + $entityIds = array_values(array_diff($entityIds, $storedEntityIds)); |
|
| 162 | 162 | } |
| 163 | - if ( $entityIds !== [] || $claimIds !== [] ) { |
|
| 164 | - if ( $entityIds !== [] ) { |
|
| 165 | - $this->loggingHelper->logCheckConstraintsCacheMisses( $entityIds ); |
|
| 163 | + if ($entityIds !== [] || $claimIds !== []) { |
|
| 164 | + if ($entityIds !== []) { |
|
| 165 | + $this->loggingHelper->logCheckConstraintsCacheMisses($entityIds); |
|
| 166 | 166 | } |
| 167 | - $response = $this->getAndStoreResults( $entityIds, $claimIds, $constraintIds, $statuses ); |
|
| 168 | - $results = array_merge( $results, $response->getArray() ); |
|
| 167 | + $response = $this->getAndStoreResults($entityIds, $claimIds, $constraintIds, $statuses); |
|
| 168 | + $results = array_merge($results, $response->getArray()); |
|
| 169 | 169 | $metadatas[] = $response->getMetadata(); |
| 170 | 170 | } |
| 171 | 171 | return new CachedCheckResults( |
| 172 | 172 | $results, |
| 173 | - Metadata::merge( $metadatas ) |
|
| 173 | + Metadata::merge($metadatas) |
|
| 174 | 174 | ); |
| 175 | 175 | } |
| 176 | 176 | |
@@ -193,13 +193,13 @@ discard block |
||
| 193 | 193 | ?array $constraintIds, |
| 194 | 194 | array $statuses |
| 195 | 195 | ) { |
| 196 | - if ( $claimIds !== [] ) { |
|
| 196 | + if ($claimIds !== []) { |
|
| 197 | 197 | return false; |
| 198 | 198 | } |
| 199 | - if ( $constraintIds !== null ) { |
|
| 199 | + if ($constraintIds !== null) { |
|
| 200 | 200 | return false; |
| 201 | 201 | } |
| 202 | - if ( array_diff( $statuses, self::CACHED_STATUSES ) !== [] ) { |
|
| 202 | + if (array_diff($statuses, self::CACHED_STATUSES) !== []) { |
|
| 203 | 203 | return false; |
| 204 | 204 | } |
| 205 | 205 | return true; |
@@ -214,8 +214,8 @@ discard block |
||
| 214 | 214 | * @param CheckResult $result |
| 215 | 215 | * @return bool |
| 216 | 216 | */ |
| 217 | - private function statusSelected( array $statuses, CheckResult $result ) { |
|
| 218 | - return in_array( $result->getStatus(), $statuses, true ) || |
|
| 217 | + private function statusSelected(array $statuses, CheckResult $result) { |
|
| 218 | + return in_array($result->getStatus(), $statuses, true) || |
|
| 219 | 219 | $result instanceof NullResult; |
| 220 | 220 | } |
| 221 | 221 | |
@@ -232,11 +232,11 @@ discard block |
||
| 232 | 232 | ?array $constraintIds, |
| 233 | 233 | array $statuses |
| 234 | 234 | ) { |
| 235 | - $results = $this->resultsSource->getResults( $entityIds, $claimIds, $constraintIds, $statuses ); |
|
| 235 | + $results = $this->resultsSource->getResults($entityIds, $claimIds, $constraintIds, $statuses); |
|
| 236 | 236 | |
| 237 | - if ( $this->canStoreResults( $entityIds, $claimIds, $constraintIds, $statuses ) ) { |
|
| 238 | - foreach ( $entityIds as $entityId ) { |
|
| 239 | - $this->storeResults( $entityId, $results ); |
|
| 237 | + if ($this->canStoreResults($entityIds, $claimIds, $constraintIds, $statuses)) { |
|
| 238 | + foreach ($entityIds as $entityId) { |
|
| 239 | + $this->storeResults($entityId, $results); |
|
| 240 | 240 | } |
| 241 | 241 | } |
| 242 | 242 | |
@@ -267,10 +267,10 @@ discard block |
||
| 267 | 267 | ?array $constraintIds, |
| 268 | 268 | array $statuses |
| 269 | 269 | ) { |
| 270 | - if ( $constraintIds !== null ) { |
|
| 270 | + if ($constraintIds !== null) { |
|
| 271 | 271 | return false; |
| 272 | 272 | } |
| 273 | - if ( array_diff( self::CACHED_STATUSES, $statuses ) !== [] ) { |
|
| 273 | + if (array_diff(self::CACHED_STATUSES, $statuses) !== []) { |
|
| 274 | 274 | return false; |
| 275 | 275 | } |
| 276 | 276 | return true; |
@@ -284,21 +284,21 @@ discard block |
||
| 284 | 284 | * May include check results for other entity IDs as well, |
| 285 | 285 | * or check results with statuses that we’re not interested in caching. |
| 286 | 286 | */ |
| 287 | - private function storeResults( EntityId $entityId, CachedCheckResults $results ) { |
|
| 287 | + private function storeResults(EntityId $entityId, CachedCheckResults $results) { |
|
| 288 | 288 | $latestRevisionIds = $this->getLatestRevisionIds( |
| 289 | 289 | $results->getMetadata()->getDependencyMetadata()->getEntityIds() |
| 290 | 290 | ); |
| 291 | - if ( $latestRevisionIds === null ) { |
|
| 291 | + if ($latestRevisionIds === null) { |
|
| 292 | 292 | return; |
| 293 | 293 | } |
| 294 | 294 | |
| 295 | 295 | $resultSerializations = []; |
| 296 | - foreach ( $results->getArray() as $checkResult ) { |
|
| 297 | - if ( $checkResult->getContextCursor()->getEntityId() !== $entityId->getSerialization() ) { |
|
| 296 | + foreach ($results->getArray() as $checkResult) { |
|
| 297 | + if ($checkResult->getContextCursor()->getEntityId() !== $entityId->getSerialization()) { |
|
| 298 | 298 | continue; |
| 299 | 299 | } |
| 300 | - if ( $this->statusSelected( self::CACHED_STATUSES, $checkResult ) ) { |
|
| 301 | - $resultSerializations[] = $this->checkResultSerializer->serialize( $checkResult ); |
|
| 300 | + if ($this->statusSelected(self::CACHED_STATUSES, $checkResult)) { |
|
| 301 | + $resultSerializations[] = $this->checkResultSerializer->serialize($checkResult); |
|
| 302 | 302 | } |
| 303 | 303 | } |
| 304 | 304 | |
@@ -307,11 +307,11 @@ discard block |
||
| 307 | 307 | 'latestRevisionIds' => $latestRevisionIds, |
| 308 | 308 | ]; |
| 309 | 309 | $futureTime = $results->getMetadata()->getDependencyMetadata()->getFutureTime(); |
| 310 | - if ( $futureTime !== null ) { |
|
| 310 | + if ($futureTime !== null) { |
|
| 311 | 311 | $value['futureTime'] = $futureTime->getArrayValue(); |
| 312 | 312 | } |
| 313 | 313 | |
| 314 | - $this->cache->set( $entityId, $value, $this->ttlInSeconds ); |
|
| 314 | + $this->cache->set($entityId, $value, $this->ttlInSeconds); |
|
| 315 | 315 | } |
| 316 | 316 | |
| 317 | 317 | /** |
@@ -326,33 +326,32 @@ discard block |
||
| 326 | 326 | $forRevision = 0 |
| 327 | 327 | ) { |
| 328 | 328 | $cacheInfo = WANObjectCache::PASS_BY_REF; |
| 329 | - $value = $this->cache->get( $entityId, $curTTL, [], $cacheInfo ); |
|
| 330 | - $now = ( $this->microtime )( true ); |
|
| 329 | + $value = $this->cache->get($entityId, $curTTL, [], $cacheInfo); |
|
| 330 | + $now = ($this->microtime)(true); |
|
| 331 | 331 | |
| 332 | - $dependencyMetadata = $this->checkDependencyMetadata( $value, |
|
| 333 | - [ $entityId->getSerialization() => $forRevision ] ); |
|
| 334 | - if ( $dependencyMetadata === null ) { |
|
| 332 | + $dependencyMetadata = $this->checkDependencyMetadata($value, |
|
| 333 | + [$entityId->getSerialization() => $forRevision]); |
|
| 334 | + if ($dependencyMetadata === null) { |
|
| 335 | 335 | return null; |
| 336 | 336 | } |
| 337 | 337 | |
| 338 | 338 | // @phan-suppress-next-line PhanTypePossiblyInvalidDimOffset False positive |
| 339 | 339 | $asOf = $cacheInfo[WANObjectCache::KEY_AS_OF]; |
| 340 | - $ageInSeconds = (int)ceil( $now - $asOf ); |
|
| 340 | + $ageInSeconds = (int) ceil($now - $asOf); |
|
| 341 | 341 | $cachingMetadata = $ageInSeconds > 0 ? |
| 342 | - CachingMetadata::ofMaximumAgeInSeconds( $ageInSeconds ) : |
|
| 343 | - CachingMetadata::fresh(); |
|
| 342 | + CachingMetadata::ofMaximumAgeInSeconds($ageInSeconds) : CachingMetadata::fresh(); |
|
| 344 | 343 | |
| 345 | 344 | $results = []; |
| 346 | - foreach ( $value['results'] as $resultSerialization ) { |
|
| 347 | - $results[] = $this->deserializeCheckResult( $resultSerialization, $cachingMetadata ); |
|
| 345 | + foreach ($value['results'] as $resultSerialization) { |
|
| 346 | + $results[] = $this->deserializeCheckResult($resultSerialization, $cachingMetadata); |
|
| 348 | 347 | } |
| 349 | 348 | |
| 350 | 349 | return new CachedCheckResults( |
| 351 | 350 | $results, |
| 352 | - Metadata::merge( [ |
|
| 353 | - Metadata::ofCachingMetadata( $cachingMetadata ), |
|
| 354 | - Metadata::ofDependencyMetadata( $dependencyMetadata ), |
|
| 355 | - ] ) |
|
| 351 | + Metadata::merge([ |
|
| 352 | + Metadata::ofCachingMetadata($cachingMetadata), |
|
| 353 | + Metadata::ofDependencyMetadata($dependencyMetadata), |
|
| 354 | + ]) |
|
| 356 | 355 | ); |
| 357 | 356 | } |
| 358 | 357 | |
@@ -368,43 +367,43 @@ discard block |
||
| 368 | 367 | * @return DependencyMetadata|null the dependency metadata, |
| 369 | 368 | * or null if $value should no longer be used |
| 370 | 369 | */ |
| 371 | - private function checkDependencyMetadata( $value, $paramRevs ) { |
|
| 372 | - if ( $value === false ) { |
|
| 370 | + private function checkDependencyMetadata($value, $paramRevs) { |
|
| 371 | + if ($value === false) { |
|
| 373 | 372 | return null; |
| 374 | 373 | } |
| 375 | 374 | |
| 376 | - if ( array_key_exists( 'futureTime', $value ) ) { |
|
| 377 | - $futureTime = TimeValue::newFromArray( $value['futureTime'] ); |
|
| 378 | - if ( !$this->timeValueComparer->isFutureTime( $futureTime ) ) { |
|
| 375 | + if (array_key_exists('futureTime', $value)) { |
|
| 376 | + $futureTime = TimeValue::newFromArray($value['futureTime']); |
|
| 377 | + if (!$this->timeValueComparer->isFutureTime($futureTime)) { |
|
| 379 | 378 | return null; |
| 380 | 379 | } |
| 381 | - $futureTimeDependencyMetadata = DependencyMetadata::ofFutureTime( $futureTime ); |
|
| 380 | + $futureTimeDependencyMetadata = DependencyMetadata::ofFutureTime($futureTime); |
|
| 382 | 381 | } else { |
| 383 | 382 | $futureTimeDependencyMetadata = DependencyMetadata::blank(); |
| 384 | 383 | } |
| 385 | 384 | |
| 386 | - foreach ( $paramRevs as $id => $revision ) { |
|
| 387 | - if ( $revision > 0 ) { |
|
| 388 | - $value['latestRevisionIds'][$id] = min( $revision, $value['latestRevisionIds'][$id] ?? PHP_INT_MAX ); |
|
| 385 | + foreach ($paramRevs as $id => $revision) { |
|
| 386 | + if ($revision > 0) { |
|
| 387 | + $value['latestRevisionIds'][$id] = min($revision, $value['latestRevisionIds'][$id] ?? PHP_INT_MAX); |
|
| 389 | 388 | } |
| 390 | 389 | } |
| 391 | 390 | |
| 392 | 391 | $dependedEntityIds = array_map( |
| 393 | - [ $this->entityIdParser, "parse" ], |
|
| 394 | - array_keys( $value['latestRevisionIds'] ) |
|
| 392 | + [$this->entityIdParser, "parse"], |
|
| 393 | + array_keys($value['latestRevisionIds']) |
|
| 395 | 394 | ); |
| 396 | 395 | |
| 397 | - if ( $value['latestRevisionIds'] !== $this->getLatestRevisionIds( $dependedEntityIds ) ) { |
|
| 396 | + if ($value['latestRevisionIds'] !== $this->getLatestRevisionIds($dependedEntityIds)) { |
|
| 398 | 397 | return null; |
| 399 | 398 | } |
| 400 | 399 | |
| 401 | 400 | return array_reduce( |
| 402 | 401 | $dependedEntityIds, |
| 403 | - static function ( DependencyMetadata $metadata, EntityId $entityId ) { |
|
| 404 | - return DependencyMetadata::merge( [ |
|
| 402 | + static function(DependencyMetadata $metadata, EntityId $entityId) { |
|
| 403 | + return DependencyMetadata::merge([ |
|
| 405 | 404 | $metadata, |
| 406 | - DependencyMetadata::ofEntityId( $entityId ), |
|
| 407 | - ] ); |
|
| 405 | + DependencyMetadata::ofEntityId($entityId), |
|
| 406 | + ]); |
|
| 408 | 407 | }, |
| 409 | 408 | $futureTimeDependencyMetadata |
| 410 | 409 | ); |
@@ -424,13 +423,13 @@ discard block |
||
| 424 | 423 | array $resultSerialization, |
| 425 | 424 | CachingMetadata $cachingMetadata |
| 426 | 425 | ) { |
| 427 | - $result = $this->checkResultDeserializer->deserialize( $resultSerialization ); |
|
| 428 | - if ( $this->isPossiblyStaleResult( $result ) ) { |
|
| 426 | + $result = $this->checkResultDeserializer->deserialize($resultSerialization); |
|
| 427 | + if ($this->isPossiblyStaleResult($result)) { |
|
| 429 | 428 | $result->withMetadata( |
| 430 | - Metadata::merge( [ |
|
| 429 | + Metadata::merge([ |
|
| 431 | 430 | $result->getMetadata(), |
| 432 | - Metadata::ofCachingMetadata( $cachingMetadata ), |
|
| 433 | - ] ) |
|
| 431 | + Metadata::ofCachingMetadata($cachingMetadata), |
|
| 432 | + ]) |
|
| 434 | 433 | ); |
| 435 | 434 | } |
| 436 | 435 | return $result; |
@@ -440,8 +439,8 @@ discard block |
||
| 440 | 439 | * @param CheckResult $result |
| 441 | 440 | * @return bool |
| 442 | 441 | */ |
| 443 | - private function isPossiblyStaleResult( CheckResult $result ) { |
|
| 444 | - if ( $result instanceof NullResult ) { |
|
| 442 | + private function isPossiblyStaleResult(CheckResult $result) { |
|
| 443 | + if ($result instanceof NullResult) { |
|
| 445 | 444 | return false; |
| 446 | 445 | } |
| 447 | 446 | |
@@ -456,14 +455,14 @@ discard block |
||
| 456 | 455 | * @return int[]|null array from entity ID serializations to revision ID, |
| 457 | 456 | * or null to indicate that not all revision IDs could be loaded |
| 458 | 457 | */ |
| 459 | - private function getLatestRevisionIds( array $entityIds ) { |
|
| 460 | - if ( $entityIds === [] ) { |
|
| 458 | + private function getLatestRevisionIds(array $entityIds) { |
|
| 459 | + if ($entityIds === []) { |
|
| 461 | 460 | $this->loggingHelper->logEmptyDependencyMetadata(); |
| 462 | 461 | return []; |
| 463 | 462 | } |
| 464 | - if ( count( $entityIds ) > $this->maxRevisionIds ) { |
|
| 463 | + if (count($entityIds) > $this->maxRevisionIds) { |
|
| 465 | 464 | // one of those entities will probably be edited soon, so might as well skip caching |
| 466 | - $this->loggingHelper->logHugeDependencyMetadata( $entityIds, $this->maxRevisionIds ); |
|
| 465 | + $this->loggingHelper->logHugeDependencyMetadata($entityIds, $this->maxRevisionIds); |
|
| 467 | 466 | return null; |
| 468 | 467 | } |
| 469 | 468 | |
@@ -471,7 +470,7 @@ discard block |
||
| 471 | 470 | $entityIds, |
| 472 | 471 | LookupConstants::LATEST_FROM_REPLICA |
| 473 | 472 | ); |
| 474 | - if ( $this->hasFalseElements( $latestRevisionIds ) ) { |
|
| 473 | + if ($this->hasFalseElements($latestRevisionIds)) { |
|
| 475 | 474 | return null; |
| 476 | 475 | } |
| 477 | 476 | return $latestRevisionIds; |
@@ -481,8 +480,8 @@ discard block |
||
| 481 | 480 | * @param array $array |
| 482 | 481 | * @return bool |
| 483 | 482 | */ |
| 484 | - private function hasFalseElements( array $array ) { |
|
| 485 | - return in_array( false, $array, true ); |
|
| 483 | + private function hasFalseElements(array $array) { |
|
| 484 | + return in_array(false, $array, true); |
|
| 486 | 485 | } |
| 487 | 486 | |
| 488 | 487 | /** |
@@ -490,7 +489,7 @@ discard block |
||
| 490 | 489 | * |
| 491 | 490 | * @param callable $microtime |
| 492 | 491 | */ |
| 493 | - public function setMicrotimeFunction( callable $microtime ) { |
|
| 492 | + public function setMicrotimeFunction(callable $microtime) { |
|
| 494 | 493 | $this->microtime = $microtime; |
| 495 | 494 | } |
| 496 | 495 | |