Skip to content

Instantly share code, notes, and snippets.

@mdmunir
Last active April 10, 2016 09:22
Show Gist options
  • Save mdmunir/d2a69bdefac3b9bf0558322af70e5c84 to your computer and use it in GitHub Desktop.
Save mdmunir/d2a69bdefac3b9bf0558322af70e5c84 to your computer and use it in GitHub Desktop.
<?php
namespace app\controllers;
use Yii;
use yii\web\Controller;
/**
* Site controller
*/
class SiteController extends Controller
{
public function actionIndex()
{
return 'Hello World';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment