[FrameworkBundle] fixed CS

This commit is contained in:
Martin Hason 2011-04-01 10:28:09 +02:00
parent c9c66db108
commit 3baebe4e3b
2 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ EOF;
require_once $file;
@unlink($file);
$class = "$namespace\\$class";
$class = "$namespace\\$class";
return new $class($parent->getEnvironment(), $debug);
}

View File

@ -62,7 +62,7 @@ class ContainerAwareEventDispatcher extends EventDispatcher
throw new \InvalidArgumentException('Expected a string argument');
}
foreach ((array)$events as $event) {
foreach ((array) $events as $event) {
// Prevent duplicate entries
$this->listenerIds[$event][$serviceId] = $priority;
}