. */ declare(strict_types=1); namespace FireflyIII\Import\Mapper; /** * Interface MapperInterface. * @deprecated * @codeCoverageIgnore */ interface MapperInterface { /** * Get map of objects. * * @return array */ public function getMap(): array; }