Skip to content

Commit

Permalink
Fix package names.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Sep 6, 2017
1 parent bdd86dc commit 7fc26b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions timeobjects/lib/Factory/Driver.php
Expand Up @@ -25,12 +25,12 @@ public function create($name, array $params = array())
switch ($class) {
case 'TimeObjects_Driver_Weather':
if (!class_exists('Horde_Service_Weather')) {
throw new TimeObjects_Exception('Horde_Services_Weather is not installed');
throw new TimeObjects_Exception('Horde_Service_Weather is not installed');
}
break;
case 'TimeObjects_Driver_FacebookEvents':
if (!class_exists('Horde_Service_Facebook')) {
throw new TimeObjects_Exception('Horde_Services_Facebook is not installed');
throw new TimeObjects_Exception('Horde_Service_Facebook is not installed');
}
break;
default:
Expand All @@ -39,4 +39,4 @@ public function create($name, array $params = array())

return new $class($params);
}
}
}

0 comments on commit 7fc26b3

Please sign in to comment.