Conditions | 4 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | private function setConfig() |
||
25 | { |
||
26 | if (function_exists('config') and function_exists('app')) {//Load Config For Laravel |
||
27 | if(!empty(config('irfa.serial_number'))) |
||
28 | { |
||
29 | $this->laravelConfig(); |
||
30 | } else{ |
||
31 | $this->generalConfig(); |
||
32 | } |
||
33 | } else{//Load Config for Non-Laravel |
||
34 | $this->generalConfig(); |
||
35 | } |
||
67 |