Completed
Push — master ( 3e9dd6...32f022 )
by Tom
02:12
created
src/SheetLoader/TSSFile.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	}
45 45
 
46 46
 	public function updateRequired($data) {
47
-		$this->cacheName = $this->getCacheKey($data) . $this->fileName;
47
+		$this->cacheName = $this->getCacheKey($data).$this->fileName;
48 48
 
49 49
 		$rules = $this->getRulesFromCache($this->fileName);
50 50
 		//Nothing was cached or the TSS file has changed, update is required
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 		if ($this->cacheKey) {
62 62
 			$parser = new \Transphporm\Parser\Value($data);
63 63
 			$cacheKey = $parser->parseTokens($this->cacheKey)[0];
64
-			$this->cacheName = $cacheKey . $this->fileName;
64
+			$this->cacheName = $cacheKey.$this->fileName;
65 65
 			return $cacheKey;
66 66
 		}
67 67
 		else return $this->fileName;
Please login to merge, or discard this patch.