mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-16 22:39:52 +08:00
Appended newlines to every PHP document that did not have a newline as the last character in the file.
16 lines
204 B
PHP
16 lines
204 B
PHP
<?php
|
|
use \yii\web\Controller;
|
|
|
|
/**
|
|
* SiteController
|
|
*/
|
|
class SiteController extends Controller
|
|
{
|
|
public function actionIndex()
|
|
{
|
|
echo $this->render('index', array(
|
|
'name' => 'Qiang',
|
|
));
|
|
}
|
|
}
|