Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | protected function getEnvironmentSetUp($app) |
||
16 | { |
||
17 | $app['config']->set('battlenet-api', [ |
||
18 | 'domain' => 'https://eu.api.battle.net', |
||
19 | 'api_key' => 'trjejxvhkw9s49etr4qpubg4h4qndjqm', // Used for testing. Do not use this in your production environment |
||
20 | 'locale' => 'en_GB', |
||
21 | 'cache' => false, |
||
22 | 'cache_duration' => 600, |
||
23 | ]); |
||
24 | } |
||
25 | |||
38 |