From 66061d9a8c5f9225711df2760bfaa2b30cc2b775 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Sat, 7 Nov 2015 16:35:04 +0000 Subject: [PATCH] Fixed typo --- app/Dates/DateFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Dates/DateFactory.php b/app/Dates/DateFactory.php index 17c276f5..2b04059c 100644 --- a/app/Dates/DateFactory.php +++ b/app/Dates/DateFactory.php @@ -72,6 +72,6 @@ class DateFactory */ public function createNormalized($format, $time) { - return $this->createFromFormat($format, $time)->setTimezone($this->appTimezone); + return $this->create($format, $time)->setTimezone($this->appTimezone); } }