mirror of
https://github.com/composer/composer
synced 2025-05-10 00:53:06 +00:00
Merge pull request #791 from liuggio/patch-1
just added a \ before RuntimeException
This commit is contained in:
commit
67cf46546d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue