Merge remote-tracking branch 'origin/develop' into develop

# Conflicts:
#	Admin/Controller.php
This commit is contained in:
Dennis Eichhorn 2017-07-09 23:10:42 +02:00
commit 4241ed39a2
3 changed files with 3 additions and 3 deletions

View File

@ -192,6 +192,6 @@ class AccountMapper extends DataMapperAbstract
*/ */
public static function get($primaryKey, int $relations = RelationType::ALL, $fill = null) 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) public static function get($primaryKey, int $relations = RelationType::ALL, $fill = null)
{ {
return parent::get((int) $primaryKey, $relations, $fill); return parent::get($primaryKey, $relations, $fill);
} }
} }