mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-09 17:46:55 +01:00
15 lines
253 B
PHP
15 lines
253 B
PHP
<?php
|
|
|
|
/**
|
|
* SiteController is the default controller to handle user requests.
|
|
*/
|
|
class SiteController extends CController
|
|
{
|
|
/**
|
|
* Index action is the default action in a controller.
|
|
*/
|
|
public function actionIndex()
|
|
{
|
|
echo 'Hello World';
|
|
}
|
|
} |