From 3287ce12a49c9475d7c42825042ec8ea6395f07f Mon Sep 17 00:00:00 2001 From: Christian Schmidt Date: Tue, 11 Nov 2014 08:31:36 +0100 Subject: [PATCH] Fix namespace collission --- lib/Doctrine/ORM/ORMException.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/ORM/ORMException.php b/lib/Doctrine/ORM/ORMException.php index d4894e825..cbbada57d 100644 --- a/lib/Doctrine/ORM/ORMException.php +++ b/lib/Doctrine/ORM/ORMException.php @@ -19,7 +19,7 @@ namespace Doctrine\ORM; -use Doctrine\Common\Cache\Cache; +use Doctrine\Common\Cache\Cache as CacheDriver; use Exception; /** @@ -234,11 +234,11 @@ class ORMException extends Exception } /** - * @param Cache $cache + * @param \Doctrine\Common\Cache\Cache $cache * * @return ORMException */ - public static function metadataCacheUsesNonPersistentCache(Cache $cache) + public static function metadataCacheUsesNonPersistentCache(CacheDriver $cache) { return new self('Metadata Cache uses a non-persistent cache driver, ' . get_class($cache) . '.'); }