Created
August 10, 2018 00:48
-
-
Save Blair2004/f3f93fef1fe6ba28c3956c5a211087a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class HelloWorldController extends Tendoo_Module | |
{ | |
public function __construt() | |
{ | |
parent::__construct(); | |
} | |
/** | |
* Index Method | |
* @param void | |
* @return void | |
**/ | |
public function index() | |
{ | |
echo 'Hello World'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment