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