Memory.php 315 B

12345678910111213141516171819202122
  1. <?php
  2. namespace League\Flysystem\Cached\Storage;
  3. class Memory extends AbstractCache
  4. {
  5. /**
  6. * {@inheritdoc}
  7. */
  8. public function save()
  9. {
  10. // There is nothing to save
  11. }
  12. /**
  13. * {@inheritdoc}
  14. */
  15. public function load()
  16. {
  17. // There is nothing to load
  18. }
  19. }