mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-05 17:44:02 +01:00
11 lines
200 B
PHP
11 lines
200 B
PHP
<?php
|
|
|
|
use yii\helpers\ArrayHelper;
|
|
|
|
$params = [
|
|
'adminEmail' => 'admin@example.com',
|
|
'wsURL' => 'ws://192.168.1.102:8081',
|
|
];
|
|
|
|
return ArrayHelper::merge($params, require 'params-local.php');
|