class ControllerBase
{
}
class postSmsController extends ControllerBase
{
}
class SmsSentController extends ControllerBase
{
}
如何在 phalcon 中扩展 CotrollerBase 和其他控制器,我想在 SmsSentController 中使用 postSmsController 的功能,也想在两个 Controller 类中使用 ControllerBase 的功能。我应该怎么办