@@ -36,7 +36,7 @@ |
||
36 | 36 | if ($this->cacheKey) { |
37 | 37 | $parser = new Parser\Value($data); |
38 | 38 | $parsedKey = $parser->parseTokens($this->cacheKey)[0]; |
39 | - $this->cacheName = $parsedKey . $this->tss; |
|
39 | + $this->cacheName = $parsedKey.$this->tss; |
|
40 | 40 | return $parsedKey; |
41 | 41 | } |
42 | 42 | else return ''; |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | } |
42 | 42 | |
43 | 43 | public function updateRequired($data) { |
44 | - $this->cacheName = $this->getCacheKey($data) . $this->fileName; |
|
44 | + $this->cacheName = $this->getCacheKey($data).$this->fileName; |
|
45 | 45 | |
46 | 46 | $rules = $this->getRulesFromCache($this->fileName, $data); |
47 | 47 | //Nothing was cached or the TSS file has changed, update is required |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | if ($this->cacheKey) { |
59 | 59 | $parser = new \Transphporm\Parser\Value($data); |
60 | 60 | $cacheKey = $parser->parseTokens($this->cacheKey)[0]; |
61 | - $this->cacheName = $cacheKey . $this->fileName; |
|
61 | + $this->cacheName = $cacheKey.$this->fileName; |
|
62 | 62 | return $cacheKey; |
63 | 63 | } |
64 | 64 | else return ''; |