PHP Classes

File: controller/Index.php

Recommend this page to a friend!
  Classes of Jonathan Alexey   JFWork   controller/Index.php   Download  
File: controller/Index.php
Role: Class source
Content type: text/plain
Description: Auxiliary script
Class: JFWork
Tiny framework based on the MVC design pattern
Author: By
Last change: Update of controller/Index.php
Date: 2 years ago
Size: 231 bytes
 

Contents

Class file image Download
<?php

// Index File, this is default if
// Not find anything on URL
// Not change it.
// New Update will come.
class Index extends Engine {

    function
__construct(){
       
parent::__construct();
       
    }

    function
index(){
       
    }


}

?>