Passed
Push — master ( b3fb6d...1001d0 )
by Andre
12:57 queued 10:06
created
src/elements/Provider.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     public function getFieldContext(): string
95 95
     {
96
-        return 'enupalSocializer:' . $this->id;
96
+        return 'enupalSocializer:'.$this->id;
97 97
     }
98 98
 
99 99
     /**
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public static function displayName(): string
105 105
     {
106
-        return Craft::t('enupal-socializer','Socializer');
106
+        return Craft::t('enupal-socializer', 'Socializer');
107 107
     }
108 108
 
109 109
     /**
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     public function getCpEditUrl(): ?string
164 164
     {
165 165
         return UrlHelper::cpUrl(
166
-            'enupal-socializer/providers/edit/' . $this->id
166
+            'enupal-socializer/providers/edit/'.$this->id
167 167
         );
168 168
     }
169 169
 
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
         $sources = [
196 196
             [
197 197
                 'key' => '*',
198
-                'label' => Craft::t('enupal-socializer','All Providers'),
198
+                'label' => Craft::t('enupal-socializer', 'All Providers'),
199 199
             ]
200 200
         ];
201 201
 
@@ -238,8 +238,8 @@  discard block
 block discarded – undo
238 238
     protected static function defineSortOptions(): array
239 239
     {
240 240
         $attributes = [
241
-            'elements.dateCreated' => Craft::t('enupal-socializer','Date Created'),
242
-            'name' => Craft::t('enupal-socializer','Name')
241
+            'elements.dateCreated' => Craft::t('enupal-socializer', 'Date Created'),
242
+            'name' => Craft::t('enupal-socializer', 'Name')
243 243
         ];
244 244
 
245 245
         return $attributes;
@@ -251,9 +251,9 @@  discard block
 block discarded – undo
251 251
     protected static function defineTableAttributes(): array
252 252
     {
253 253
         $attributes = [];
254
-        $attributes['name'] = ['label' => Craft::t('enupal-socializer','Name')];
255
-        $attributes['handle'] = ['label' => Craft::t('enupal-socializer','Handle')];
256
-        $attributes['dateCreated'] = ['label' => Craft::t('enupal-socializer','Date Created')];
254
+        $attributes['name'] = ['label' => Craft::t('enupal-socializer', 'Name')];
255
+        $attributes['handle'] = ['label' => Craft::t('enupal-socializer', 'Handle')];
256
+        $attributes['dateCreated'] = ['label' => Craft::t('enupal-socializer', 'Date Created')];
257 257
 
258 258
         return $attributes;
259 259
     }
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
      */
264 264
     protected static function defineDefaultTableAttributes(string $source): array
265 265
     {
266
-        $attributes = ['name', 'handle' , 'dateCreated'];
266
+        $attributes = ['name', 'handle', 'dateCreated'];
267 267
 
268 268
         return $attributes;
269 269
     }
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
             $record = ProviderRecord::findOne($this->id);
309 309
 
310 310
             if (!$record) {
311
-                throw new \Exception('Invalid Provider ID: ' . $this->id);
311
+                throw new \Exception('Invalid Provider ID: '.$this->id);
312 312
             }
313 313
         } else {
314 314
             $record->id = $this->id;
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
         $record->clientSecret = $this->clientSecret;
323 323
         $record->fieldMapping = $this->fieldMapping;
324 324
 
325
-        if (is_array($record->fieldMapping)){
325
+        if (is_array($record->fieldMapping)) {
326 326
             $record->fieldMapping = json_encode($record->fieldMapping);
327 327
         };
328 328
 
Please login to merge, or discard this patch.
src/services/Providers.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     public function loginUrl($handle, $options = [])
155 155
     {
156 156
         $provider = $this->getProviderByHandle($handle);
157
-        if (is_null($provider)){
157
+        if (is_null($provider)) {
158 158
             throw new NotSupportedException('Provider not found or disabled: '.$handle);
159 159
         }
160 160
 
@@ -223,12 +223,12 @@  discard block
 block discarded – undo
223 223
         ]];
224 224
 
225 225
         foreach ($fields as $field) {
226
-            if (!$this->validateFieldClass($field)){
226
+            if (!$this->validateFieldClass($field)) {
227 227
                 continue;
228 228
             }
229 229
 
230 230
             $option = [
231
-                'label' => $field->name. ' ('.$field->handle.')',
231
+                'label' => $field->name.' ('.$field->handle.')',
232 232
                 'value' => $field->handle
233 233
             ];
234 234
 
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
           Dropdown::class => 1
252 252
         ];
253 253
 
254
-        if (isset($supportedClasses[$fieldClass])){
254
+        if (isset($supportedClasses[$fieldClass])) {
255 255
             return true;
256 256
         }
257 257
 
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
     {
466 466
         $providers = $this->getAllProviderTypes();
467 467
 
468
-        if ($excludeCreated){
468
+        if ($excludeCreated) {
469 469
             $providers = $this->getExcludeCreatedProviders();
470 470
         }
471 471
 
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
         $adapter = $provider->getAdapter();
658 658
         try {
659 659
             $adapter->authenticate();
660
-        } catch (\Exception $e){
660
+        } catch (\Exception $e) {
661 661
             Craft::error("Unable to Authorize user", __METHOD__);
662 662
             return false;
663 663
         }
@@ -665,11 +665,11 @@  discard block
 block discarded – undo
665 665
         $userProfile = $adapter->getUserProfile();
666 666
         $user = Craft::$app->getUser()->getIdentity();
667 667
 
668
-        if (!$user){
668
+        if (!$user) {
669 669
             $user = $this->retrieveUser($userProfile, $provider);
670 670
         }
671 671
 
672
-        if (!$user){
672
+        if (!$user) {
673 673
             Craft::error("Not user to login", __METHOD__);
674 674
             return false;
675 675
         }
@@ -678,7 +678,7 @@  discard block
 block discarded – undo
678 678
 
679 679
         $user = $this->triggerBeforeLoginUser($user, $provider, $userProfile);
680 680
 
681
-        if (is_null($user)){
681
+        if (is_null($user)) {
682 682
             Craft::error("User not valid to login on BeforeLoginEvent", __METHOD__);
683 683
             return false;
684 684
         }
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
      */
735 735
     private function retrieveUser(Profile $userProfile, Provider $provider): ?User
736 736
     {
737
-        if (is_null($userProfile->email)){
737
+        if (is_null($userProfile->email)) {
738 738
             throw new \Exception("Email address is not provided, please check the settings of your application");
739 739
         }
740 740
 
@@ -745,7 +745,7 @@  discard block
 block discarded – undo
745 745
         }
746 746
         $settings = Socializer::$app->settings->getSettings();
747 747
 
748
-        if (!$settings->enableUserSignUp){
748
+        if (!$settings->enableUserSignUp) {
749 749
             return null;
750 750
         }
751 751
 
@@ -773,16 +773,16 @@  discard block
 block discarded – undo
773 773
             return null;
774 774
         }
775 775
 
776
-        if (!Craft::$app->elements->saveElement($user)){
776
+        if (!Craft::$app->elements->saveElement($user)) {
777 777
             Craft::error("Unable to create user: ".json_encode($user->getErrors()));
778 778
             throw new \Exception("Something went wrong while creating the user");
779 779
         }
780 780
 
781 781
         Craft::$app->users->activateUser($user);
782 782
 
783
-        if ($settings->userGroupId){
783
+        if ($settings->userGroupId) {
784 784
             $userGroup = Craft::$app->getUserGroups()->getGroupById($settings->userGroupId);
785
-            if ($userGroup){
785
+            if ($userGroup) {
786 786
                 Craft::$app->getUsers()->assignUserToGroups($user->id, [$userGroup->id]);
787 787
             }
788 788
         }
@@ -824,10 +824,10 @@  discard block
 block discarded – undo
824 824
         }
825 825
 
826 826
         foreach ($fieldMapping as $item) {
827
-            if(isset($item['targetUserField']) && $item['targetUserField']){
827
+            if (isset($item['targetUserField']) && $item['targetUserField']) {
828 828
                 $profileValue = $profile->{$item['sourceFormField']};
829 829
                 $field = $user->getFieldLayout()->getFieldByHandle($item['targetUserField']);
830
-                if ($field){
830
+                if ($field) {
831 831
                     $user->setFieldValue($item['targetUserField'], $profileValue);
832 832
                 }
833 833
             }
@@ -850,7 +850,7 @@  discard block
 block discarded – undo
850 850
             $providerRecord = ProviderRecord::findOne($provider->id);
851 851
 
852 852
             if (!$providerRecord) {
853
-                throw new Exception(Craft::t("enupal-socializer",'No Provider exists with the ID “{id}”', ['id' => $provider->id]));
853
+                throw new Exception(Craft::t("enupal-socializer", 'No Provider exists with the ID “{id}”', ['id' => $provider->id]));
854 854
             }
855 855
         }
856 856
 
Please login to merge, or discard this patch.