woocommerce/includes/gateways
Nestor Soriano 52eed70f04 Add a 'NumberUtil' class with a 'round' method.
There's a number of places in the WooCommerce codebase where the
built-in function 'round' is executed passing a non-numeric value
(not a number and not a string that can be parsed as a number),
for example round(''). In PHP 7 this yields a value of 0, but in
PHP 8 this throws an error.

This commit adds a 'NumberUtil' class with a static 'round' method,
this method checks if the passed value is numeric and if so it just
executes the built-in function, otherwise it returns 0. And all the
calls to 'round' in the codebase are replaced with 'NumberUtil::round'.
2020-10-01 11:08:51 +02:00
..
bacs Fixed package tag usage 2020-08-05 13:36:24 -03:00
cheque Fixed package tag usage 2020-08-05 13:36:24 -03:00
cod Fixed package tag usage 2020-08-05 13:36:24 -03:00
paypal Add a 'NumberUtil' class with a 'round' method. 2020-10-01 11:08:51 +02:00
class-wc-payment-gateway-cc.php Fixed package tag usage 2020-08-05 13:36:24 -03:00
class-wc-payment-gateway-echeck.php Fixed package tag usage 2020-08-05 13:36:24 -03:00