for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Archivr\IndexMerger;
use Archivr\AbstractFactory;
final class IndexMergerFactory extends AbstractFactory
{
protected static function requiresInstanceOf(): string
return IndexMergerInterface::class;
}
protected static function getFactoryMap(): array
return [
'standard' => StandardIndexMerger::class,
];