From dc6dc60f650df7db9985883540429f87ef9ab1cc Mon Sep 17 00:00:00 2001 From: rlanvin Date: Thu, 25 Feb 2016 12:35:51 +0200 Subject: [PATCH] Explicitely using the namespace for LogicException (#3) --- src/RRule.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/RRule.php b/src/RRule.php index a52fc41..c28cc3f 100755 --- a/src/RRule.php +++ b/src/RRule.php @@ -944,12 +944,12 @@ class RRule implements \Iterator, \ArrayAccess, \Countable public function offsetSet($offset, $value) { - throw new LogicException('Setting a Date in a RRule is not supported'); + throw new \LogicException('Setting a Date in a RRule is not supported'); } public function offsetUnset($offset) { - throw new LogicException('Unsetting a Date in a RRule is not supported'); + throw new \LogicException('Unsetting a Date in a RRule is not supported'); } // Countable interface