From 80fcd67b63476c68a0dc37e0e5d5c402922be2b4 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 9 Jul 2017 10:42:02 +0200 Subject: [PATCH] (Draft) Create risk management models Also fix some belongsTo in other mappers. --- Models/ClientMapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Models/ClientMapper.php b/Models/ClientMapper.php index 87c7864..ab8dd02 100644 --- a/Models/ClientMapper.php +++ b/Models/ClientMapper.php @@ -160,6 +160,6 @@ class ClientMapper extends DataMapperAbstract */ public static function get($primaryKey, int $relations = RelationType::ALL, $fill = null) { - return parent::get((int) $primaryKey, $relations, $fill); + return parent::get($primaryKey, $relations, $fill); } }