<?phpnamespace SurveyPlugin;use Codeages\PluginBundle\System\PluginBase;use SurveyPlugin\Biz\SurveyServiceProvider;class SurveyPlugin extends PluginBase{ public function boot() { parent::boot(); $this->registerBiz(); } public function getEnabledExtensions() { return ['DataTag', 'DataDict']; } protected function registerBiz() { $biz = $this->container->get('biz'); $biz->register(new SurveyServiceProvider()); }}