Skip to content

Commit

Permalink
Merge pull request #25 from iolloyd/master
Browse files Browse the repository at this point in the history
remove unneeded passing of Pimple $app
  • Loading branch information
simensen committed Jun 17, 2014
2 parents f3afc8b + f21fd45 commit 25628e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class DoctrineOrmServiceProvider
{
public function register(\Pimple $app)
{
foreach ($this->getOrmDefaults($app) as $key => $value) {
foreach ($this->getOrmDefaults() as $key => $value) {
if (!isset($app[$key])) {
$app[$key] = $value;
}
Expand Down Expand Up @@ -410,7 +410,7 @@ public function register(\Pimple $app)
*
* @return array
*/
protected function getOrmDefaults(\Pimple $app)
protected function getOrmDefaults()
{
return array(
'orm.proxies_dir' => __DIR__.'/../../../../../../../../cache/doctrine/proxies',
Expand Down

0 comments on commit 25628e4

Please sign in to comment.