Completed
Push — master ( e7d6b1...168e62 )
by Risan Bagja
02:25 queued 45s
created
src/Credentials/CredentialsFactory.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      * Get missing parameter's key.
70 70
      *
71 71
      * @param  array  $parameters
72
-     * @param  array  $requiredKeys
72
+     * @param  string[]  $requiredKeys
73 73
      * @return string|null
74 74
      */
75 75
     public function getMissingParameterKey(array $parameters, array $requiredKeys = [])
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     public function getMissingParameterKey(array $parameters, array $requiredKeys = [])
76 76
     {
77 77
         foreach ($requiredKeys as $key) {
78
-            if (! isset($parameters[$key])) {
78
+            if (!isset($parameters[$key])) {
79 79
                 return $key;
80 80
             }
81 81
         }
Please login to merge, or discard this patch.