woocommerce/tests/legacy/unit-tests/order
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
..
class-wc-tests-crud-orders.php Fixed unit tests for #26462 2020-07-01 18:13:29 -03:00
class-wc-tests-order-functions.php Merge pull request #27239 from woocommerce/fix/package-tag 2020-08-07 13:37:24 -03:00
class-wc-tests-orders.php Changed | to \ 2020-08-07 13:36:41 -03:00
coupons.php Add a 'NumberUtil' class with a 'round' method. 2020-10-01 11:08:51 +02:00
query.php Moved PHPUnit suite into tests/legacy 2020-04-24 13:53:40 -07:00