diff --git a/app/Console/Commands/ObjectImportCommand.php b/app/Console/Commands/ObjectImportCommand.php index a1202ded89..b79949521a 100644 --- a/app/Console/Commands/ObjectImportCommand.php +++ b/app/Console/Commands/ObjectImportCommand.php @@ -59,7 +59,7 @@ class ObjectImportCommand extends Command $classString = "App\\Importer\\{$class}Importer"; $importer = new $classString($filename); $importer->setCallbacks([$this, 'log'], [$this, 'progress'], [$this, 'errorCallback']) - ->setUserId($this->option('user_id')) + ->setCreatedBy($this->option('user_id')) ->setUpdating($this->option('update')) ->setShouldNotify($this->option('send-welcome')) ->setUsernameFormat($this->option('username_format'));