TYPO3 CMS  TYPO3_8-7
NullBackend.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
24 {
34  public function set($entryIdentifier, $data, array $tags = [], $lifetime = null)
35  {
36  }
37 
43  public function setCompression($compression)
44  {
45  }
46 
54  public function get($entryIdentifier)
55  {
56  return false;
57  }
58 
66  public function has($entryIdentifier)
67  {
68  return false;
69  }
70 
78  public function remove($entryIdentifier)
79  {
80  return false;
81  }
82 
90  public function findIdentifiersByTag($tag)
91  {
92  return [];
93  }
94 
100  public function flush()
101  {
102  }
103 
110  public function flushByTag($tag)
111  {
112  }
113 
119  public function collectGarbage()
120  {
121  }
122 
129  public function requireOnce($identifier)
130  {
131  }
132 }