From d9ecb62d0dfbff8a3700f389fffcad042793d713 Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Sat, 28 Sep 2019 10:28:33 +0200 Subject: [PATCH] DateTime instead \DateTime --- src/Readers/Swar4.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Readers/Swar4.php b/src/Readers/Swar4.php index 899abc7..d61e9a8 100644 --- a/src/Readers/Swar4.php +++ b/src/Readers/Swar4.php @@ -613,7 +613,7 @@ class Swar4 implements ReaderInterface * @param string $string * @return DateTime */ - public function convertStringToDate(string $string): \DateTime + public function convertStringToDate(string $string): DateTime { if (strlen($string) == 10) { return DateTime::createFromFormat('d/m/Y', $string);