Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 12 |
CRAP Score | 3.004 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
35 | 96 | public function get() { |
|
36 | 96 | if (!$this->timeZone) { |
|
37 | 96 | $net = $this->system->getNetPath(); |
|
38 | 96 | if ($net) { |
|
39 | 96 | $command = sprintf('%s time zone -S %s', |
|
40 | 96 | $net, |
|
41 | 96 | escapeshellarg($this->host) |
|
42 | 96 | ); |
|
43 | 96 | $this->timeZone = exec($command); |
|
44 | 96 | } else { // fallback to server timezone |
|
45 | $this->timeZone = date_default_timezone_get(); |
||
46 | } |
||
47 | 96 | } |
|
48 | 96 | return $this->timeZone; |
|
49 | } |
||
50 | } |
||
51 |