php - Laravel rule integer prevent overflow

one text

Solution:

A short test revealed as @apokryfos already stated, that you don't to need to check for the lower and upper bounds of an integer.

But when you want to limit your integer to a specific size (e. g. 32 Bit), then you need to provide the bounds limit.

In my test run, the size of an integer was 64 Bit.

Source