Completed
Push — master ( da7c37...06f4a4 )
by Tom
03:19
created
src/SheetLoader.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 	public function updateRequired($data) {
47 47
 		if (!is_file($this->tss)) return true;
48 48
 
49
-		$this->cacheName = $this->getCacheKey($data) . $this->tss;
49
+		$this->cacheName = $this->getCacheKey($data).$this->tss;
50 50
 
51 51
 		$rules = $this->getRulesFromCache($this->tss, $data);
52 52
 		//Nothing was cached or the TSS file has changed, update is required
@@ -82,8 +82,8 @@  discard block
 block discarded – undo
82 82
 		if (is_file($this->tss)) $this->getRulesFromCache($this->tss);
83 83
 		if ($this->cacheKey) {
84 84
 			$parser = new Parser\Value($data);
85
-			$x= $parser->parseTokens($this->cacheKey)[0];
86
-			$this->cacheName = $x . $this->tss;
85
+			$x = $parser->parseTokens($this->cacheKey)[0];
86
+			$this->cacheName = $x.$this->tss;
87 87
 			return $x;
88 88
 		}
89 89
 		else return '';
@@ -146,6 +146,6 @@  discard block
 block discarded – undo
146 146
 
147 147
 
148 148
 	private function sortPseudo($a, $b) {
149
-		return count($a->pseudo) > count($b->pseudo)  ? 1 : -1;
149
+		return count($a->pseudo) > count($b->pseudo) ? 1 : -1;
150 150
 	}
151 151
 }
Please login to merge, or discard this patch.