iagafonov/controller

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

This package is not auto-updated.

Last update: 2024-04-28 01:34:36 UTC


README

Abstract controller

Latest Stable Version Build Status Coverage Status

Installation

The preferred way to install this extension is through composer.

composer require iagafonov/controller

Use

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

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