Downgraded a FIXME to a TODO

This commit is contained in:
Brady Wetherington 2021-11-19 16:38:46 -08:00
parent 864cc4f8d5
commit e8f5dc85a6

View file

@ -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();