<?phpnamespace UserImporterPlugin;use Codeages\PluginBundle\System\PluginBase;use UserImporterPlugin\Biz\Importer\UserImporter;class UserImporterPlugin extends PluginBase{ public function boot() { parent::boot(); $biz = $this->container->get('biz'); $biz['importer.user'] = function ($biz) { return new UserImporter($biz); }; }}