‪TYPO3CMS  10.4
ConcreteBackendFixture.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
19 
24 {
28  protected ‪$someOption;
29 
30  public function set($entryIdentifier, $data, array $tags = [], $lifetime = null)
31  {
32  }
33 
34  public function get($entryIdentifier)
35  {
36  }
37 
38  public function ‪has($entryIdentifier)
39  {
40  }
41 
42  public function remove($entryIdentifier)
43  {
44  }
45 
46  public function ‪flush()
47  {
48  }
49 
50  public function ‪flushByTag($tag)
51  {
52  }
53 
54  public function ‪findIdentifiersByTag($tag)
55  {
56  }
57 
58  public function ‪collectGarbage()
59  {
60  }
61 
62  public function ‪setSomeOption($value)
63  {
64  $this->someOption = $value;
65  }
66 
67  public function ‪getSomeOption()
68  {
69  return ‪$this->someOption;
70  }
71 }
‪TYPO3\CMS\Core\Tests\Unit\Cache\Backend\Fixtures\ConcreteBackendFixture\findIdentifiersByTag
‪findIdentifiersByTag($tag)
Definition: ConcreteBackendFixture.php:53
‪TYPO3\CMS\Core\Tests\Unit\Cache\Backend\Fixtures\ConcreteBackendFixture\has
‪has($entryIdentifier)
Definition: ConcreteBackendFixture.php:37
‪TYPO3\CMS\Core\Tests\Unit\Cache\Backend\Fixtures
Definition: ConcreteBackendFixture.php:16
‪TYPO3\CMS\Core\Tests\Unit\Cache\Backend\Fixtures\ConcreteBackendFixture\setSomeOption
‪setSomeOption($value)
Definition: ConcreteBackendFixture.php:61
‪TYPO3\CMS\Core\Tests\Unit\Cache\Backend\Fixtures\ConcreteBackendFixture\$someOption
‪string $someOption
Definition: ConcreteBackendFixture.php:27
‪TYPO3\CMS\Core\Tests\Unit\Cache\Backend\Fixtures\ConcreteBackendFixture
Definition: ConcreteBackendFixture.php:24
‪TYPO3\CMS\Core\Tests\Unit\Cache\Backend\Fixtures\ConcreteBackendFixture\flush
‪flush()
Definition: ConcreteBackendFixture.php:45
‪TYPO3\CMS\Core\Tests\Unit\Cache\Backend\Fixtures\ConcreteBackendFixture\flushByTag
‪flushByTag($tag)
Definition: ConcreteBackendFixture.php:49
‪TYPO3\CMS\Core\Cache\Backend\AbstractBackend
Definition: AbstractBackend.php:28
‪TYPO3\CMS\Core\Tests\Unit\Cache\Backend\Fixtures\ConcreteBackendFixture\getSomeOption
‪getSomeOption()
Definition: ConcreteBackendFixture.php:66
‪TYPO3\CMS\Core\Tests\Unit\Cache\Backend\Fixtures\ConcreteBackendFixture\collectGarbage
‪collectGarbage()
Definition: ConcreteBackendFixture.php:57