for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wikibase\DataModel\Services\Entity;
use Wikibase\DataModel\Entity\EntityId;
/**
* No-op EntityPrefetcher
*
* @since 1.1
* @license GPL-2.0-or-later
* @author Marius Hoch < [email protected] >
* @codeCoverageIgnore
*/
class NullEntityPrefetcher implements EntityPrefetcher {
* Prefetches data for a list of entity ids.
* @param EntityId[] $entityIds
public function prefetch( array $entityIds ) {
}
* Purges prefetched data about a given entity.
public function purge( EntityId $entityId ) {
* Purges all prefetched data.
public function purgeAll() {