(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 8a2c38a8ff
commit 9e7a9a3d02
3 changed files with 3 additions and 3 deletions

View File

@ -119,6 +119,6 @@ class AddressMapper 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

@ -111,6 +111,6 @@ class ContactElementMapper 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

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