From 0168f576ebde6b85854f164df78ec3d31653cc8a Mon Sep 17 00:00:00 2001 From: Ozan Kurt Date: Fri, 27 Jan 2017 06:36:31 +0100 Subject: [PATCH] Fixed namespacing Fixed namespacing --- src/Period.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Period.php b/src/Period.php index 7591620..dd4a814 100644 --- a/src/Period.php +++ b/src/Period.php @@ -3,7 +3,7 @@ namespace Kurt\Google\Analytics; use Carbon\Carbon; -use Kurt\Google\Analytics\Exceptions\InvalidPeriod; +use Kurt\Google\Analytics\Exceptions\InvalidPeriodException; class Period { @@ -95,4 +95,4 @@ public function validatePeriod(Carbon $startDate = null, Carbon $endDate = null) throw new InvalidPeriodException($startDate, $endDate); } } -} \ No newline at end of file +}