. */ declare(strict_types=1); namespace App\Services\CSV\Mapper; use App\Exceptions\ImporterErrorException; /** * Class OpposingAccounts */ class OpposingAccounts implements MapperInterface { use GetAccounts; /** * Get map of objects. * * @throws ImporterErrorException */ public function getMap(): array { return $this->mergeAll($this->getAllAccounts()); } }