mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-04 06:37:55 +08:00
14 lines
264 B
PHP
14 lines
264 B
PHP
<?php
|
|
|
|
class TestCase extends \yii\test\TestCase
|
|
{
|
|
public $params;
|
|
|
|
function getParam($name)
|
|
{
|
|
if ($this->params === null) {
|
|
$this->params = require(__DIR__ . '/data/config.php');
|
|
}
|
|
return isset($this->params[$name]) ? $this->params[$name] : null;
|
|
}
|
|
} |