@@ -12,8 +12,8 @@ |
||
12 | 12 | } |
13 | 13 | |
14 | 14 | public function __get($name) { |
15 | - if (method_exists($this, 'get' . $name)) { |
|
16 | - return $this->{'get' . $name}(); |
|
15 | + if (method_exists($this, 'get'.$name)) { |
|
16 | + return $this->{'get'.$name}(); |
|
17 | 17 | } |
18 | 18 | return $this->$name; |
19 | 19 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | substr($sha, 0, 8), |
95 | 95 | $branch->LastUpdated()->TimeDiff() |
96 | 96 | ); |
97 | - $branches[$sha . '-' . $name] = $branchValue; |
|
97 | + $branches[$sha.'-'.$name] = $branchValue; |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | // Tags |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | substr($sha, 0, 8), |
108 | 108 | $branch->LastUpdated()->TimeDiff() |
109 | 109 | ); |
110 | - $tags[$sha . '-' . $name] = $tagValue; |
|
110 | + $tags[$sha.'-'.$name] = $tagValue; |
|
111 | 111 | } |
112 | 112 | $tags = array_reverse($tags); |
113 | 113 |