Skip to content

Commit

Permalink
Fix parameter class. (#3742)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguel303 authored and jmolivas committed Jan 24, 2018
1 parent f68bcf9 commit 281b4e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Generator/EventSubscriberGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct(
public function generate(array $parameters)
{
$module = $parameters['module'];
$class = $parameters['module'];
$class = $parameters['class'];
$moduleInstance = $this->extensionManager->getModule($module);
$modulePath = $moduleInstance->getPath() . '/' . $module;
$parameters = array_merge($parameters,
Expand Down

0 comments on commit 281b4e8

Please sign in to comment.