. */ declare(strict_types=1); namespace FireflyIII\Import\MapperPreProcess; /** * Interface PreProcessorInterface. */ interface PreProcessorInterface { /** * Run preprocessor. * * @param string $value * * @return array */ public function run(string $value): array; }