Passed
Push — master ( 0b883f...beec4f )
by Patrick
16:14 queued 12:19
created
src/TelegramLoginWidget.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     private function checkAndGetResponseData(Collection $collection): Collection
48 48
     {
49
-        $requiredAttributes = ['id', 'first_name', 'last_name', 'username', 'photo_url', 'auth_date', 'hash'];
49
+        $requiredAttributes = [ 'id', 'first_name', 'last_name', 'username', 'photo_url', 'auth_date', 'hash' ];
50 50
 
51 51
         return $collection->only($requiredAttributes);
52 52
     }
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
         $data = $collection->except('hash');
66 66
 
67
-        $data_check_string = $data->map(function ($item, $key) {
67
+        $data_check_string = $data->map(function($item, $key) {
68 68
             return $key.'='.$item;
69 69
         })
70 70
             ->values()
Please login to merge, or discard this patch.