We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c1d85f commit d68039eCopy full SHA for d68039e
src/Kdyby/DoctrineCache/MemcacheCache.php
@@ -0,0 +1,31 @@
1
+<?php
2
+
3
+/**
4
+ * This file is part of the Kdyby (http://www.kdyby.org)
5
+ *
6
+ * Copyright (c) 2008 Filip Procházka (filip@prochazka.su)
7
8
+ * For the full copyright and license information, please view the file license.txt that was distributed with this source code.
9
+ */
10
11
+namespace Kdyby\DoctrineCache;
12
13
+use Doctrine;
14
+use Kdyby;
15
+use Memcache;
16
+use Nette;
17
18
19
20
21
+ * @author Filip Procházka <filip@prochazka.su>
22
23
+class MemcacheCache extends Doctrine\Common\Cache\MemcacheCache
24
+{
25
26
+ public function __construct(Memcache $memcache = NULL)
27
+ {
28
+ $this->setMemcache($memcache);
29
+ }
30
31
+}
0 commit comments