You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
402 B
17 lines
402 B
<?php |
|
/** @var $controller \yii\console\controllers\AppController */ |
|
$controller = $this; |
|
|
|
return array( |
|
'default' => array( |
|
'index.php' => array( |
|
'handler' => function($source) use ($controller) { |
|
return $controller->replaceRelativePath($source, realpath(YII_PATH.'/yii.php'), 'yii'); |
|
}, |
|
'permissions' => 0777, |
|
), |
|
'protected/runtime' => array( |
|
'permissions' => 0755, |
|
), |
|
), |
|
); |