Completed
Push — master ( a5ba68...917ab9 )
by Dominik
20:27 queued 18:43
created
Entity/UserContact.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -65,6 +65,9 @@
 block discarded – undo
65 65
      * @param string | null $email
66 66
      * @param string | null $headline
67 67
      * @param array | null  $tags        array of strings
68
+     * @param string $gender
69
+     * @param string $firstName
70
+     * @param string $lastName
68 71
      */
69 72
     public function __construct($provider,
70 73
                                 $gender = null,
Please login to merge, or discard this patch.
Services/AzineGenderGuesser.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@
 block discarded – undo
35 35
 
36 36
     private $debugMsg = '';
37 37
 
38
+    /**
39
+     * @param string[] $matchList
40
+     */
38 41
     public function __construct($femaleNames = null, $malesNames = null, $merge = false, $matchList = null)
39 42
     {
40 43
         // Use the double_metaphone module if it's available, or fall back to the
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
@@ -18,10 +18,10 @@
 block discarded – undo
18 18
     /**
19 19
      * Guess the gender for a given firstname. The guesser will return an array with.
20 20
      *
21
-     * @param \string $firstName
21
+     * @param string $firstName
22 22
      * @param int     $looseness
23 23
      *
24
-     * @return \string sex => m | f
24
+     * @return string sex => m | f
25 25
      */
26 26
     public function gender($firstName, $looseness = 1);
27 27
 }
Please login to merge, or discard this patch.
Controller/HybridEndPointController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Symfony\Component\HttpFoundation\RedirectResponse;
8 8
 use Symfony\Component\HttpFoundation\Request;
9 9
 use Symfony\Component\HttpFoundation\Response;
10
-use Hybridauth\HttpClient\Util;
11 10
 
12 11
 class HybridEndPointController extends Controller
13 12
 {
Please login to merge, or discard this patch.
Services/AzineHybridAuth.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
      * @param ObjectManager         $manager
65 65
      * @param array                 $config
66 66
      * @param bool                  $storeForUser
67
-     * @param $storeAsCookie
68
-     * @param $expiresInDays
67
+     * @param boolean $storeAsCookie
68
+     * @param integer $expiresInDays
69 69
      */
70 70
     public function __construct(UrlGeneratorInterface $router, TokenStorageInterface $tokenStorage, ObjectManager $manager, $config, $storeForUser, $storeAsCookie, $expiresInDays)
71 71
     {
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      * HybridAuthSessions will be restored from DB and/or cookies, according to the bundle configuration.
89 89
      *
90 90
      * @param $cookieSessionData
91
-     * @param $provider
91
+     * @param string $provider
92 92
      *
93 93
      * @return \Hybridauth\Adapter\AdapterInterface
94 94
      */
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
     /**
253 253
      * Get the LinkedIn Adapter.
254 254
      *
255
-     * @return \Hybrid_Providers_LinkedIn
255
+     * @return \Hybridauth\Adapter\AdapterInterface
256 256
      */
257 257
     public function getLinkedIn()
258 258
     {
Please login to merge, or discard this patch.