From a96a401887e65b2e43c9b80347e6bd2f07b80f79 Mon Sep 17 00:00:00 2001 From: Jeremiah VALERIE Date: Tue, 17 May 2016 16:45:55 +0200 Subject: [PATCH] Fix refresh compiled types on stale cache --- Generator/TypeGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Generator/TypeGenerator.php b/Generator/TypeGenerator.php index b52098e63..958c63865 100644 --- a/Generator/TypeGenerator.php +++ b/Generator/TypeGenerator.php @@ -189,6 +189,6 @@ public function loadClasses($forceReload = false) private function getClassCollectionPath() { - return $this->getCacheDir().'/../types.php.cache'; + return $this->getCacheDir().'/__types.bootstrap.php.cache'; } }