/**
  * Flush all content cache entries
  *
  * @return void
  */
 public function flush()
 {
     $this->cache->flush();
 }
 /**
  * Flushes 'route' and 'resolve' caches.
  *
  * @return void
  */
 public function flushCaches()
 {
     $this->routeCache->flush();
     $this->resolveCache->flush();
 }
 /**
  * Flushes 'findMatchResults' and 'resolve' caches.
  *
  * @return void
  */
 public function flushCaches()
 {
     $this->findMatchResultsCache->flush();
     $this->resolveCache->flush();
 }