Completed
Push — master ( 02c8a1...58faf5 )
by Tom
02:14
created
src/SheetCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
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 '';
Please login to merge, or discard this patch.
src/SheetLoader/TSSFile.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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 '';
Please login to merge, or discard this patch.