iagafonov/控制器

v0.0.6 2017-07-12 07:59 UTC

This package is not auto-updated.

Last update: 2024-09-29 03:31:11 UTC


README

抽象控制器

Latest Stable Version Build Status Coverage Status

安装

安装此扩展的首选方式是通过 composer

composer require iagafonov/controller

使用

use IVAgafonov\Controller\AbstractController
use IVAgafonov\Controller\ControllerInterface

class MyController extends AbstractController implements ControllerInterface
{
    public function index()
    {
    
    }
}