1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-06 13:16:45 +02:00

feat(helpers): fix collectionWithRange

This commit is contained in:
Awilum
2022-05-02 22:00:25 +03:00
parent 21bce813da
commit cd8dec0810

View File

@@ -63,7 +63,7 @@ if (! function_exists('collectionWithRange')) {
*
* @return Collection
*/
function collectionWithRange($low, $high, int $step = 1): Arrays
function collectionWithRange($low, $high, int $step = 1): Collection
{
return Collection::createWithRange($low, $high, $step);
}