Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | "callback" => function () { |
||
12 | $weatherhelper = new \Anax\Weather\Weatherhelper(); |
||
13 | |||
14 | // Load the configuration files |
||
15 | $cfg = $this->get("configuration"); |
||
|
|||
16 | $config = $cfg->load("weather_key.php"); |
||
17 | |||
18 | // Set Api key |
||
19 | $weatherhelper->setKey($config["config"]["key"]); |
||
20 | |||
21 | return $weatherhelper; |
||
22 | } |
||
26 |