@@ -32,10 +32,9 @@ |
||
| 32 | 32 | |
| 33 | 33 | namespace OrgHeiglHybridAuth; |
| 34 | 34 | |
| 35 | -use Zend\ModuleManager\ModuleManager, |
|
| 36 | - Zend\EventManager\StaticEventManager, |
|
| 37 | - Zend\Mvc\ModuleRouteListener; |
|
| 38 | -use OrgHeiglHybridAuth\View\Helper\HybridAuth as HybridAuthViewManager; |
|
| 35 | +use Zend\ModuleManager\ModuleManager; |
|
| 36 | +use Zend\EventManager\StaticEventManager; |
|
| 37 | +use Zend\Mvc\ModuleRouteListener; |
|
| 39 | 38 | |
| 40 | 39 | |
| 41 | 40 | /** |
@@ -57,9 +57,8 @@ |
||
| 57 | 57 | /** |
| 58 | 58 | * Set the user-object |
| 59 | 59 | * |
| 60 | - * @param Hybridauth\Entity\Profile $userProfile The userprofile to use |
|
| 61 | 60 | * |
| 62 | - * @return HybridAuthUserProxy |
|
| 61 | + * @return HybridAuthUserWrapper |
|
| 63 | 62 | */ |
| 64 | 63 | public function setUser(Profile $user) |
| 65 | 64 | { |
@@ -32,7 +32,6 @@ |
||
| 32 | 32 | namespace OrgHeiglHybridAuth; |
| 33 | 33 | |
| 34 | 34 | use Hybridauth\Entity\Profile; |
| 35 | -use OrgHeiglHybridAuth\UserInterface; |
|
| 36 | 35 | |
| 37 | 36 | /** |
| 38 | 37 | * This class works as proxy to the HybridAuth-User-Object |
@@ -51,10 +51,9 @@ |
||
| 51 | 51 | /** |
| 52 | 52 | * Create the service using the configuration from the modules config-file |
| 53 | 53 | * |
| 54 | - * @param ServiceLocator $services The ServiceLocator |
|
| 55 | 54 | * |
| 56 | 55 | * @see \Zend\ServiceManager\FactoryInterface::createService() |
| 57 | - * @return Hybrid_Auth |
|
| 56 | + * @return SessionContainer |
|
| 58 | 57 | */ |
| 59 | 58 | public function createService(ServiceLocatorInterface $serviceLocator) |
| 60 | 59 | { |
@@ -65,7 +65,6 @@ |
||
| 65 | 65 | /** |
| 66 | 66 | * Set the user-object |
| 67 | 67 | * |
| 68 | - * @param HybridAuthUserWrapper $userProfile The userprofile to use |
|
| 69 | 68 | * |
| 70 | 69 | * @return UserToken |
| 71 | 70 | */ |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | /** |
| 75 | 75 | * create an instance of the viewhelper |
| 76 | 76 | * |
| 77 | - * @param mixed $viewHelperManager |
|
| 77 | + * @param HelperPluginManager $viewHelperManager |
|
| 78 | 78 | */ |
| 79 | 79 | public function __construct(HelperPluginManager $viewHelperManager, MvcEvent $mvcEvent) |
| 80 | 80 | { |
@@ -33,7 +33,6 @@ |
||
| 33 | 33 | use Zend\View\Helper\AbstractHtmlElement as HtmlElement; |
| 34 | 34 | use Zend\View\HelperPluginManager; |
| 35 | 35 | use Zend\Mvc\MvcEvent; |
| 36 | - |
|
| 37 | 36 | use Zend\ServiceManager\ServiceLocatorAwareInterface; |
| 38 | 37 | use Zend\ServiceManager\ServiceLocatorInterface; |
| 39 | 38 | |