1
0
Fork 0

fix plural in exception message

pull/2828/head
Jan Brecka 2014-03-21 14:26:54 +01:00
parent ea7717c8e5
commit a41370b021
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class ClassMapGenerator
foreach ($classes as $class) {
if (array_key_exists($class, $map)) {
throw new \RuntimeException('Ambiguous class "'.$class.'" resolution; defined in "'.$map[$class].'" and in "'.$filePath.'" file.');
throw new \RuntimeException('Ambiguous class "'.$class.'" resolution; defined in "'.$map[$class].'" and in "'.$filePath.'" files.');
}
$map[$class] = $filePath;