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.
11 lines
250 B
PHP
11 lines
250 B
PHP
<?php
|
|
define('YII_DEBUG', true);
|
|
|
|
require __DIR__.'/../framework/yii.php';
|
|
|
|
$config = require dirname(__DIR__).'/protected/config/main.php';
|
|
$config['basePath'] = dirname(__DIR__).'/protected';
|
|
|
|
$app = new \yii\web\Application($config);
|
|
$app->run();
|