Skip to content

Commit

Permalink
Test...
Browse files Browse the repository at this point in the history
  • Loading branch information
maurobonfietti committed Aug 12, 2018
1 parent 1554dec commit 83447c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Controller/User/BaseUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,16 @@ public function __construct(Container $container)
{
$this->container = $container;
$this->logger = $container->get('logger');
$this->userService = $container->get('user_service');
}

/**
* @return UserService
*/
protected function getUserService()
{
return $this->container->get('user_service');
return $this->userService;
// return $this->container->get('user_service');
}

/**
Expand Down

0 comments on commit 83447c6

Please sign in to comment.