Source for file DummyStorage.php
Documentation is available at DummyStorage.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 6: * Copyright (c) 2004, 2009 David Grudl (http://davidgrudl.com)
- 7: *
- 8: * This source file is subject to the "Nette license" that is bundled
- 9: * with this package in the file license.txt.
- 10: *
- 11: * For more information please see http://nettephp.com
- 12: *
- 18: */
- 28: /**
- 29: * Cache dummy storage.
- 30: *
- 34: */
- 36: {
- 38: /**
- 39: * Read from cache.
- 42: */
- 44: {
- 46: }
- 50: /**
- 51: * Writes item into the cache.
- 56: */
- 58: {
- 60: }
- 64: /**
- 50: /**
- 51: * Removes item from the cache.
- 68: */
- 70: {
- 72: }
- 76: /**
- 77: * Removes items from the cache by conditions & garbage collector.
- 80: */
- 82: {
- 84: }
- 86: }