Completed
Push — master ( cb56f8...e7e2cc )
by Dominik
08:03
created
Services/AzineHybridAuth.php 2 patches
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -61,8 +61,8 @@  discard block
 block discarded – undo
61 61
 	 * @param ObjectManager $manager
62 62
 	 * @param array $config
63 63
 	 * @param bool $storeForUser
64
-	 * @param $storeAsCookie
65
-	 * @param $expiresInDays
64
+	 * @param boolean $storeAsCookie
65
+	 * @param integer $expiresInDays
66 66
 	 */
67 67
 	public function __construct(UrlGeneratorInterface $router, TokenStorageInterface $tokenStorage, ObjectManager $manager, $config, $storeForUser, $storeAsCookie, $expiresInDays){
68 68
 		$base_url = $router->generate($config[AzineHybridAuthExtension::ENDPOINT_ROUTE], array(), UrlGeneratorInterface::ABSOLUTE_URL);
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 	 * HybridAuthSessions will be restored from DB and/or cookies, according to the bundle configuration.
85 85
 	 *
86 86
 	 * @param $cookieSessionData
87
-	 * @param $provider
87
+	 * @param string $provider
88 88
 	 * @return \Hybrid_Auth
89 89
 	 */
90 90
 	public function getInstance($cookieSessionData, $provider){
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 	 * @param $authSessionData
201 201
 	 * @param string $provider_id
202 202
 	 * @param boolean $require_login
203
-	 * @return \Hybrid_Provider_Model
203
+	 * @return \Hybrid_Provider_Adapter
204 204
 	 */
205 205
 	public function getProvider($authSessionData, $provider_id, $require_login = true){
206 206
 		$adapter = $this->getInstance($authSessionData, $provider_id)->getAdapter($provider_id);
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
 
226 226
 	/**
227 227
      * Get the Xing Adapter
228
-     * @return \Hybrid_Providers_XING
228
+     * @return \Hybrid_Provider_Adapter
229 229
      */
230 230
 	public function getXing(){
231 231
 		return $this->getProvider(null, "xing");
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 	/**
235 235
 	 * Get the Xing api (OAuthClient)
236 236
 	 *
237
-	 * @return \OAuth1Client
237
+	 * @return \stdClass
238 238
 	 */
239 239
 	public function getXingApi(){
240 240
 		return $this->getXing()->api();
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 	/**
244 244
 	 * Get the LinkedIn Adapter
245 245
 	 *
246
-	 * @return \Hybrid_Providers_LinkedIn
246
+	 * @return \Hybrid_Provider_Adapter
247 247
 	 */
248 248
 	public function getLinkedIn(){
249 249
 		return $this->getProvider(null, "linkedin");
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
     /**
253 253
      * Get the LinkedIn api (LinkedIn PHP-client)
254 254
      *
255
-     * @return \LinkedIn
255
+     * @return \stdClass
256 256
      */
257 257
 	public function getLinkedInApi(){
258 258
 		return $this->getLinkedIn()->api();
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace Azine\HybridAuthBundle\Services;
3 3
 
4 4
 use Azine\HybridAuthBundle\DependencyInjection\AzineHybridAuthExtension;
5
-
6 5
 use Azine\HybridAuthBundle\Entity\HybridAuthSessionData;
7 6
 use Doctrine\Common\Persistence\ObjectManager;
8 7
 use Symfony\Component\HttpFoundation\Cookie;
Please login to merge, or discard this patch.
Services/GenderGuesser.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@
 block discarded – undo
24 24
 	/**
25 25
 	 * Guess the gender for a given firstname. The best guess is returned, ignoring the low confidence level.
26 26
 	 * 
27
-	 * @param \string $firstName
27
+	 * @param string $firstName
28 28
 	 * @param int $looseness
29
-	 * @return \string sex => m | f | ''
29
+	 * @return string sex => m | f | ''
30 30
 	 */
31 31
 	public function gender($firstName, $looseness=1);	
32 32
 }
33 33
\ No newline at end of file
Please login to merge, or discard this patch.