From 66c3cba1b2edcff3e54c69ecc8eeb2e87a4f43ce Mon Sep 17 00:00:00 2001 From: faissaloux Date: Sat, 30 Mar 2024 01:01:08 +0000 Subject: [PATCH] make pint happy --- tests/AsNumericTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/AsNumericTest.php b/tests/AsNumericTest.php index c242bc8..34505c2 100644 --- a/tests/AsNumericTest.php +++ b/tests/AsNumericTest.php @@ -7,7 +7,7 @@ })->with([ 7415541, 7415.541, - "7415541", + '7415541', 0b01100110, 0x66, ]); @@ -17,8 +17,8 @@ type($variable)->asNumeric(); })->with([ - "", - "not numeric", + '', + 'not numeric', null, - [] + [], ])->throws(TypeError::class, 'Variable is not a numeric.');