‪TYPO3CMS  9.5
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 
21 {
30  public function set($entryIdentifier, $data, array $tags = [], $lifetime = null)
31  {
32  }
33 
39  public function ‪setCompression($compression)
40  {
41  }
42 
49  public function get($entryIdentifier)
50  {
51  return false;
52  }
53 
60  public function ‪has($entryIdentifier)
61  {
62  return false;
63  }
64 
71  public function remove($entryIdentifier)
72  {
73  return false;
74  }
75 
82  public function ‪findIdentifiersByTag($tag)
83  {
84  return [];
85  }
86 
90  public function ‪flush()
91  {
92  }
93 
99  public function ‪flushByTag($tag)
100  {
101  }
102 
106  public function ‪collectGarbage()
107  {
108  }
109 
115  public function ‪requireOnce($identifier)
116  {
117  }
118 
124  public function require(string $identifier)
125  {
126  }
127 }
‪TYPO3\CMS\Core\Cache\Backend\NullBackend\flush
‪flush()
Definition: NullBackend.php:90
‪TYPO3\CMS\Core\Cache\Backend\NullBackend\findIdentifiersByTag
‪array findIdentifiersByTag($tag)
Definition: NullBackend.php:82
‪TYPO3\CMS\Core\Cache\Backend\TaggableBackendInterface
Definition: TaggableBackendInterface.php:21
‪TYPO3\CMS\Core\Cache\Backend\PhpCapableBackendInterface
Definition: PhpCapableBackendInterface.php:22
‪TYPO3\CMS\Core\Cache\Backend\NullBackend\has
‪bool has($entryIdentifier)
Definition: NullBackend.php:60
‪TYPO3\CMS\Core\Cache\Backend\NullBackend
Definition: NullBackend.php:21
‪TYPO3\CMS\Core\Cache\Backend\NullBackend\flushByTag
‪flushByTag($tag)
Definition: NullBackend.php:99
‪TYPO3\CMS\Core\Cache\Backend\AbstractBackend
Definition: AbstractBackend.php:26
‪TYPO3\CMS\Core\Cache\Backend\NullBackend\requireOnce
‪requireOnce($identifier)
Definition: NullBackend.php:115
‪TYPO3\CMS\Core\Cache\Backend\NullBackend\setCompression
‪setCompression($compression)
Definition: NullBackend.php:39
‪TYPO3\CMS\Core\Cache\Backend
Definition: AbstractBackend.php:2
‪TYPO3\CMS\Core\Cache\Backend\NullBackend\collectGarbage
‪collectGarbage()
Definition: NullBackend.php:106