Passed
Push — master ( 331690...35cc72 )
by Tharanga
09:23
created
Category
src/Storage/PdoThirdPartyStorageRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
             $stmt->bindParam(':vendorToken', $vendorToken, PDO::PARAM_STR);
125 125
             $stmt->bindParam(':vendorData', $vendorData, PDO::PARAM_STR);
126 126
             $stmt->execute();
127
-        } catch(PDOException $ex) {
127
+        } catch (PDOException $ex) {
128 128
             throw new DataCannotBeStoredException(
129 129
                 'Couldn\'t save the third party user data. Error : ' . $ex->getMesage(),
130 130
                 $ex->getCode(),
Please login to merge, or discard this patch.
src/ThirdParty/LinkedIn/LinkedInConnection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
                 sprintf('%s %s', $user['firstName'], $user['lastName']),
130 130
                 $user['emailAddress']
131 131
             );
132
-        } catch(LinkedInException $ex) {
132
+        } catch (LinkedInException $ex) {
133 133
             throw new ThirdPartyConnectionFailedException(
134 134
                 sprintf('Failed to establish a new third party vendor connection. Error : %s', $ex->getMessage()),
135 135
                 $ex->getCode(),
Please login to merge, or discard this patch.