Completed
Pull Request — master (#4)
by
unknown
03:57
created
Services/AzineHybridAuth.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 * @param ObjectManager $manager
63 63
 	 * @param array $config
64 64
 	 * @param bool $storeForUser
65
-	 * @param $storeAsCookie
65
+	 * @param boolean $storeAsCookie
66 66
 	 */
67 67
 	public function __construct(UrlGeneratorInterface $router, TokenStorageInterface $tokenStorage, ObjectManager $manager, $config, $storeForUser, $storeAsCookie){
68 68
 		$base_url = $router->generate($config[AzineHybridAuthExtension::ENDPOINT_ROUTE], array(), UrlGeneratorInterface::ABSOLUTE_URL);
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	 * HybridAuthSessions will be restored from DB and/or cookies, according to the bundle configuration.
84 84
 	 *
85 85
 	 * @param $cookieSessionData
86
-	 * @param $provider
86
+	 * @param string $provider
87 87
 	 * @return \Hybrid_Auth
88 88
 	 */
89 89
 	public function getInstance($cookieSessionData, $provider){
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 	 * @param $authSessionData
202 202
 	 * @param string $provider_id
203 203
 	 * @param boolean $require_login
204
-	 * @return \Hybrid_Provider_Model
204
+	 * @return \Hybrid_Provider_Adapter
205 205
 	 */
206 206
 	public function getProvider($authSessionData, $provider_id, $require_login = true){
207 207
 		$adapter = $this->getInstance($authSessionData, $provider_id)->getAdapter($provider_id);
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 
227 227
 	/**
228 228
 	 * Get the Xing Adapter
229
-	 * @return \Hybrid_Providers_XING
229
+	 * @return \Hybrid_Provider_Adapter
230 230
 	 */
231 231
 	public function getXing(){
232 232
 		return $this->getProvider(null, "xing");
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 	/**
236 236
 	 * Get the Xing api (OAuthClient)
237 237
 	 *
238
-	 * @return \OAuth1Client
238
+	 * @return \stdClass
239 239
 	 */
240 240
 	public function getXingApi(){
241 241
 		return $this->getXing()->api();
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 	/**
245 245
 	 * Get the LinkedIn Adapter
246 246
 	 *
247
-	 * @return \Hybrid_Providers_LinkedIn
247
+	 * @return \Hybrid_Provider_Adapter
248 248
 	 */
249 249
 	public function getLinkedIn(){
250 250
 		return $this->getProvider(null, "linkedin");
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
 	/**
254 254
 	 * Get the LinkedIn api (LinkedIn PHP-client)
255 255
 	 *
256
-	 * @return \LinkedIn
256
+	 * @return \stdClass
257 257
 	 */
258 258
 	public function getLinkedInApi(){
259 259
 		return $this->getLinkedIn()->api();
Please login to merge, or discard this patch.