Skip to content

Commit

Permalink
[DependencyInjection] Fix variable name in ExtensionInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Mar 2, 2011
1 parent dfc3027 commit 6790e45
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -24,11 +24,11 @@ interface ExtensionInterface
* Loads a specific configuration.
*
* @param array $config An array of configuration values
* @param ContainerBuilder $configuration A ContainerBuilder instance
* @param ContainerBuilder $container A ContainerBuilder instance
*
* @throws \InvalidArgumentException When provided tag is not defined in this extension
*/
function load(array $config, ContainerBuilder $configuration);
function load(array $config, ContainerBuilder $container);

/**
* Returns the namespace to be used for this extension (XML namespace).
Expand Down

0 comments on commit 6790e45

Please sign in to comment.