TYPO3  7.6
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 
17 {
28  public function setString($nsKey, $itemKey, $string, $mode)
29  {
30  }
31 
42  public function importFromByteStream($nsKey, $itemKey, Swift_OutputByteStream $os, $mode)
43  {
44  }
45 
57  public function getInputByteStream($nsKey, $itemKey, Swift_InputByteStream $writeThrough = null)
58  {
59  }
60 
69  public function getString($nsKey, $itemKey)
70  {
71  }
72 
80  public function exportToByteStream($nsKey, $itemKey, Swift_InputByteStream $is)
81  {
82  }
83 
92  public function hasKey($nsKey, $itemKey)
93  {
94  return false;
95  }
96 
103  public function clearKey($nsKey, $itemKey)
104  {
105  }
106 
112  public function clearAll($nsKey)
113  {
114  }
115 }