XOOPS RMCommon Utilities  2.1.8.91RC
 All Classes Namespaces Files Functions Variables
NullKeyCache.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of SwiftMailer.
5  * (c) 2004-2009 Chris Corbyn
6  *
7  * For the full copyright and license information, please view the LICENSE
8  * file that was distributed with this source code.
9  */
10 
11 //@require 'Swift/KeyCache.php';
12 //@require 'Swift/KeyCacheInputStream.php';
13 //@require 'Swift/InputByteStream.php';
14 //@require 'Swift/OutputByteStrean.php';
15 
23 {
24 
33  public function setString($nsKey, $itemKey, $string, $mode)
34  {
35  }
36 
45  public function importFromByteStream($nsKey, $itemKey, Swift_OutputByteStream $os,
46  $mode)
47  {
48  }
49 
57  public function getInputByteStream($nsKey, $itemKey,
58  Swift_InputByteStream $writeThrough = null)
59  {
60  }
61 
68  public function getString($nsKey, $itemKey)
69  {
70  }
71 
78  public function exportToByteStream($nsKey, $itemKey, Swift_InputByteStream $is)
79  {
80  }
81 
88  public function hasKey($nsKey, $itemKey)
89  {
90  return false;
91  }
92 
98  public function clearKey($nsKey, $itemKey)
99  {
100  }
101 
106  public function clearAll($nsKey)
107  {
108  }
109 
110 }