1
0
Fork 0

just added a \ before RuntimeException (sorry I didn't run the test)

pull/795/head
Giulio De Donato 2012-06-12 18:08:22 +03:00 committed by Grégoire Pineau
parent e449f29d32
commit 1ac1bfb25b
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class ClassMapGenerator
try {
$tokens = token_get_all($contents);
} catch (\Exception $e) {
throw new RuntimeException('Could not scan for classes inside '.$path.": \n".$e->getMessage(), 0, $e);
throw new \RuntimeException('Could not scan for classes inside '.$path.": \n".$e->getMessage(), 0, $e);
}
$T_TRAIT = version_compare(PHP_VERSION, '5.4', '<') ? -1 : T_TRAIT;