<?php
namespace QAPlugin;
use Codeages\PluginBundle\System\PluginBase;
use QAPlugin\Biz\QAServiceProvider;
class QAPlugin extends PluginBase
{
public function boot()
{
parent::boot();
$this->registerBiz();
}
public function getEnabledExtensions()
{
return array('DataTag', 'DataDict', 'NotificationTemplate');
}
protected function registerBiz()
{
$biz = $this->container->get('biz');
$biz->register(new QAServiceProvider());
}
}