Closed meszaros-lajos-gyorgy closed 3 years ago
For example this is a perfectly valid ramda code:
var x = [2, 3]; append(1, x) // [2, 3, 4]
While A::append(1, [2, 3]) says:
A::append(1, [2, 3])
Argument 1 passed to Shovel\A::append() must be of the type array, int given
Fixed in https://github.com/meszaros-lajos-gyorgy/shovel/releases/tag/v2.1.2
For example this is a perfectly valid ramda code:
While
A::append(1, [2, 3])
says:Argument 1 passed to Shovel\A::append() must be of the type array, int given