From e8f5dc85a69e49a2bf7fe308901608d51debe4f1 Mon Sep 17 00:00:00 2001 From: Brady Wetherington Date: Fri, 19 Nov 2021 16:38:46 -0800 Subject: [PATCH] Downgraded a FIXME to a TODO --- app/Console/Commands/LdapSync.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/LdapSync.php b/app/Console/Commands/LdapSync.php index 0969b1991b..1eae7dda9d 100755 --- a/app/Console/Commands/LdapSync.php +++ b/app/Console/Commands/LdapSync.php @@ -91,7 +91,7 @@ class LdapSync extends Command } /* Determine which location to assign users to by default. */ - $location = null; // FIXME - this would be better called "$default_location", which is more explicit about its purpose + $location = null; // TODO - this would be better called "$default_location", which is more explicit about its purpose if ($this->option('location') != '') { $location = Location::where('name', '=', $this->option('location'))->first();