(Draft) Create risk management models

Also fix some belongsTo in other mappers.
This commit is contained in:
Dennis Eichhorn 2017-07-09 10:42:02 +02:00
parent 39536551ee
commit 7c4a4c91d2
2 changed files with 2 additions and 2 deletions

View File

@ -192,6 +192,6 @@ class AccountMapper 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);
}
}

View File

@ -74,6 +74,6 @@ class GroupMapper 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);
}
}