Skip to content

Commit

Permalink
Merge pull request #125 from GALCF/fix-installer-container-missing
Browse files Browse the repository at this point in the history
getInstaller call was missing a container
  • Loading branch information
ctippler committed Dec 13, 2021
2 parents f0d9ce1 + 45b816f commit a152c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ElementsProcessManagerBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function getJsPaths()
*/
public function getInstaller()
{
return $this->container->get(Installer::class);
return \Pimcore::getContainer()->get(Installer::class);
}

/**
Expand Down

0 comments on commit a152c27

Please sign in to comment.