Skip to content

Commit

Permalink
add missing constructor arg
Browse files Browse the repository at this point in the history
  • Loading branch information
Bozhidar Hristov committed Dec 7, 2017
1 parent 7845067 commit 4017198
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions EventSubscriber/LocaleListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ class LocaleListener implements EventSubscriberInterface
*/
private $guessLoader;

/**
* LocaleListener constructor.
* @param GuesserLoader $guessLoader
*/
public function __construct(GuesserLoader $guessLoader)
{
$this->guessLoader = $guessLoader;
}

/**
* @return array
*/
Expand Down

0 comments on commit 4017198

Please sign in to comment.