Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
NullCache.php
01 <?php
02
03 /*
04 * This file is part of Twig.
05 *
06 * (c) Fabien Potencier
07 *
08 * For the full copyright and license information, please view the LICENSE
09 * file that was distributed with this source code.
10 */
11
12 namespace Twig\Cache;
13
14 /**
15 * Implements a no-cache strategy.
16 *
17 * @author Fabien Potencier <fabien@symfony.com>
18 */
19 final class NullCache implements CacheInterface
20 {
21 public function generateKey($name, $className)
22 {
23 return '';
24 }
25
26 public function write($key, $content)
27 {
28 }
29
30 public function load($key)
31 {
32 }
33
34 public function getTimestamp($key)
35 {
36 return 0;
37 }
38 }
39
40 class_alias('Twig\Cache\NullCache', 'Twig_Cache_Null');
41