$value]); if (strlen($value) === 0) { $this->setCertainty(0); return new TransactionCurrency; } /** @var CurrencyRepositoryInterface $repository */ $repository = app(CurrencyRepositoryInterface::class, [$this->user]); if (isset($this->mapping[$value])) { Log::debug('Found currency in mapping. Should exist.', ['value' => $value, 'map' => $this->mapping[$value]]); $currency = $repository->find(intval($this->mapping[$value])); if (!is_null($currency->id)) { Log::debug('Found currency by ID', ['id' => $currency->id]); $this->setCertainty(100); return $currency; } } // not mapped? Still try to find it first: $currency = $repository->findBySymbol($value); if (!is_null($currency->id)) { Log::debug('Found currency by symbol ', ['id' => $currency->id]); $this->setCertainty(100); return $currency; } // create new currency $currency = $repository->store( [ 'name' => 'Currency ' . $value, 'code' => $value, 'symbol' => $value, ] ); $this->setCertainty(100); return $currency; } }