diff options
Diffstat (limited to 'lib/public/appframework/db/mapper.php')
-rw-r--r-- | lib/public/appframework/db/mapper.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/public/appframework/db/mapper.php b/lib/public/appframework/db/mapper.php index 157bea36916..2b99c99b71e 100644 --- a/lib/public/appframework/db/mapper.php +++ b/lib/public/appframework/db/mapper.php @@ -193,6 +193,7 @@ abstract class Mapper { * Checks if an array is associative * @param array $array * @return bool true if associative + * @since 8.1.0 */ private function isAssocArray(array $array) { return array_values($array) !== $array; @@ -202,6 +203,7 @@ abstract class Mapper { * Returns the correct PDO constant based on the value type * @param $value * @return PDO constant + * @since 8.1.0 */ private function getPDOType($value) { switch (gettype($value)) { |