replace tabs with spaces
authorAndrew Engelbrecht <andrew@fsf.org>
Fri, 7 Jan 2022 17:47:54 +0000 (12:47 -0500)
committerroot <root@login1p.fsf.org>
Fri, 7 Jan 2022 17:47:54 +0000 (12:47 -0500)
for consistent indentation regardless of tabstop size

lib/Auth/Source/FSFDrupalAuth.php

index dc3373e463a5b5cc116779c2f11723427fa63199..0e4eff61ab884ee35ab85482c740fa1ed3d9d99f 100644 (file)
@@ -233,9 +233,9 @@ class FSFDrupalAuth extends \SimpleSAML\Module\core\Auth\UserPassBase
      */
     private function add_more_attributes(&$attributes, $username) {
 
-       //
-       // query on membership
-       //
+        //
+        // query on membership
+        //
 
         $membership_data = $this->query_db('query_membership', $username);
 
@@ -245,7 +245,7 @@ class FSFDrupalAuth extends \SimpleSAML\Module\core\Auth\UserPassBase
                 ': No rows in result set. Probably no membership.');
         }
 
-       $attributes['is_member'] = ['false'];
+        $attributes['is_member'] = ['false'];
         $attributes['was_member'] = ['false'];
 
         foreach ($membership_data as $row) {
@@ -255,18 +255,18 @@ class FSFDrupalAuth extends \SimpleSAML\Module\core\Auth\UserPassBase
                 }
                 $value = (string) $value;
 
-               if ($value === '1' || $value === '2' || $value === '3') {
+                if ($value === '1' || $value === '2' || $value === '3') {
                     $attributes['is_member'] = ['true'];
                     $attributes['was_member'] = ['true'];
-               } elseif ($value === '4') {
+                } elseif ($value === '4') {
                     $attributes['was_member'] = ['true'];
-               }
+                }
             }
         }
 
-       //
-       // query on staff
-       //
+        //
+        // query on staff
+        //
 
         $staff_data = $this->query_db('query_staff', $username);
 
@@ -276,7 +276,7 @@ class FSFDrupalAuth extends \SimpleSAML\Module\core\Auth\UserPassBase
                 ': No rows in result set. Probably not FSF staff.');
         }
 
-       $attributes['is_fsf_staff'] = ['false'];
+        $attributes['is_fsf_staff'] = ['false'];
 
         foreach ($staff_data as $row) {
             foreach ($row as $key => $value) {
@@ -333,11 +333,11 @@ class FSFDrupalAuth extends \SimpleSAML\Module\core\Auth\UserPassBase
          */
         $attributes = [];
 
-       // use the entered user name so we don't forcibly change it to all
-       // lower case. this is to preserve the behavior of the old cas server,
-       // and to remain compatible with our MW and Discourse sites that are
-       // case sensitive.
-       $attributes['name'][] = $username;
+        // use the entered user name so we don't forcibly change it to all
+        // lower case. this is to preserve the behavior of the old cas server,
+        // and to remain compatible with our MW and Discourse sites that are
+        // case sensitive.
+        $attributes['name'][] = $username;
 
         foreach ($user_data as $row) {
             foreach ($row as $key => $value) {