MediaWiki master
FileBackendStoreShardFileIterator.php
Go to the documentation of this file.
1<?php
26 protected function listFromShard( $container ) {
27 $list = $this->backend->getFileListInternal(
28 $container, $this->directory, $this->params );
29 if ( $list === null ) {
30 return new ArrayIterator( [] );
31 } else {
32 // @phan-suppress-next-line PhanTypeMismatchReturnSuperType
33 return is_array( $list ) ? new ArrayIterator( $list ) : $list;
34 }
35 }
36}
listFromShard( $container)
Get the list for a given container shard.
FileBackendStore helper function to handle listings that span container shards.