From 9793f92ba123718945c7ee20945f205504c2c85e Mon Sep 17 00:00:00 2001 From: Simon Podlipsky Date: Thu, 11 Mar 2021 06:11:32 +0100 Subject: [PATCH] Mark ceil() return type as float (#5355) https://www.php.net/manual/en/function.ceil.php The return value of ceil() is still of type float as the value range of float is usually bigger than that of int. --- dictionaries/CallMap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictionaries/CallMap.php b/dictionaries/CallMap.php index ec385bb420d..7ba469fa633 100644 --- a/dictionaries/CallMap.php +++ b/dictionaries/CallMap.php @@ -1013,7 +1013,7 @@ 'CallbackFilterIterator::next' => ['void'], 'CallbackFilterIterator::rewind' => ['void'], 'CallbackFilterIterator::valid' => ['bool'], -'ceil' => ['float|int', 'num'=>'float'], +'ceil' => ['float', 'num'=>'float'], 'chdb::__construct' => ['void', 'pathname'=>'string'], 'chdb::get' => ['string', 'key'=>'string'], 'chdb_create' => ['bool', 'pathname'=>'string', 'data'=>'array'],