Completed
Push — master ( 0e6890...81e62d )
by Tom
02:57
created
src/CssToXpath.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -7,14 +7,14 @@
 block discarded – undo
7 7
 	private $depth;
8 8
 
9 9
 	public function __construct($css, $prefix = '') {
10
-		$this->css = str_replace([' >', '> '],['>', '>'], trim($css));
10
+		$this->css = str_replace([' >', '> '], ['>', '>'], trim($css));
11 11
 		$this->translators = [
12
-			' ' => function($string) use ($prefix) { return '//' . $prefix . $string;	},
13
-			'' => function($string) use ($prefix) { return '/' . $prefix . $string;	},
14
-			'>' => function($string) use ($prefix) { return '/' . $prefix  . $string; },
15
-			'#' => function($string) { return '[@id=\'' . $string . '\']'; },
16
-			'.' => function($string) { return '[contains(concat(\' \', normalize-space(@class), \' \'), \' ' . $string . ' \')]'; }, 
17
-			'[' => function($string) { return '[@' . $string . ']';	},
12
+			' ' => function($string) use ($prefix) { return '//'.$prefix.$string; },
13
+			'' => function($string) use ($prefix) { return '/'.$prefix.$string; },
14
+			'>' => function($string) use ($prefix) { return '/'.$prefix.$string; },
15
+			'#' => function($string) { return '[@id=\''.$string.'\']'; },
16
+			'.' => function($string) { return '[contains(concat(\' \', normalize-space(@class), \' \'), \' '.$string.' \')]'; }, 
17
+			'[' => function($string) { return '[@'.$string.']'; },
18 18
 			']' => function() {	return ''; }
19 19
 		];
20 20
 	}
Please login to merge, or discard this patch.
src/Formatter/Date.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 	/** Converts $val into a \DateTime object if it's not already */
12 12
 	private function getDate($val) {
13 13
 		$tz = new \DateTimeZone($this->locale['timezone']);
14
-		$date =  $val instanceof \DateTime ? $val : new \DateTime($val, $tz);
14
+		$date = $val instanceof \DateTime ? $val : new \DateTime($val, $tz);
15 15
 		$date->setTimeZone($tz);
16 16
 		return $date;
17 17
 	}
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
 	/** Formats \DateTime as Date and Time using formats from $locale */
32 32
 	public function dateTime($val) {
33
-		return $this->date($val, $this->locale['date_format'] . ' ' . $this->locale['time_format']);
33
+		return $this->date($val, $this->locale['date_format'].' '.$this->locale['time_format']);
34 34
 	}
35 35
 
36 36
 	/** Generates relative time offsets based on system clock. e.g "10 minutes ago" or "In 6 months"
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 		$diff = $now->diff($date);
43 43
 
44 44
 
45
-		$diffDays = $diff->invert === 1 ? $diff->days : 0- $diff->days;
45
+		$diffDays = $diff->invert === 1 ? $diff->days : 0-$diff->days;
46 46
 
47 47
 		if ($diffDays !== 0) return $this->dayOffset($diffDays);
48 48
 		else return $this->timeOffset($diff);
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
 	/** Gets date ranges to represent uses of weeks/months/days/etc */
70 70
 	private function getRanges($strings) {
71
-		$ranges =  [
71
+		$ranges = [
72 72
 			[1, 1, $strings['yesterday'], 1, ''],
73 73
 			[1, 13, $strings['past'], 1, 'days'],
74 74
 			[13, 28, $strings['past'], 7, 'weeks'],
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
 	/** Converts "week" to "weeks", "month" to "months" etc when plural is required using language from $locale */
89 89
 	private function getPlural($strings, $num, $interval) {
90
-		if ($interval !== '') return $num == 1 ? $strings[$interval . '_singular'] : $strings[$interval . '_plural'];
90
+		if ($interval !== '') return $num == 1 ? $strings[$interval.'_singular'] : $strings[$interval.'_plural'];
91 91
 		else return '';
92 92
 	}
93 93
 
Please login to merge, or discard this patch.
src/Formatter/Number.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
 	public function currency($num) {
15 15
 		$num = $this->decimal($num, $this->locale['currency_decimals']);
16
-		if ($this->locale['currency_position'] === 'before') return $this->locale['currency'] . $num;
17
-		else return $num . $this->locale['currency'];
16
+		if ($this->locale['currency_position'] === 'before') return $this->locale['currency'].$num;
17
+		else return $num.$this->locale['currency'];
18 18
 	}
19 19
 }
20 20
\ No newline at end of file
Please login to merge, or discard this patch.
src/Hook/DataFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
 	}
76 76
 
77 77
 	public function template($val, $element) {
78
-		$newTemplate = new \Transphporm\Builder($this->baseDir . $val[0]);
78
+		$newTemplate = new \Transphporm\Builder($this->baseDir.$val[0]);
79 79
 		$newTemplate->setLocale($this->locale);
80 80
 
81 81
 		$doc = $newTemplate->output([], true)->body;
Please login to merge, or discard this patch.
src/Hook/PseudoMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
 		return false;
78 78
 	}
79 79
 
80
-	public function header($element)  {
80
+	public function header($element) {
81 81
 		if ($this->matches($element)) {
82 82
 			foreach ($this->pseudo as $pseudo) {
83 83
 				if (strpos($pseudo, 'header') === 0) return $this->getBetween($pseudo, '[', ']');
Please login to merge, or discard this patch.
src/Hook/Rule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 		$finalPos = $this->findMatchingPos($str, $marker);
65 65
 		$string = substr($str, 1, $finalPos-1);
66 66
 		//Now remove escape characters
67
-		return str_replace('\\' . $marker, $marker, $string);
67
+		return str_replace('\\'.$marker, $marker, $string);
68 68
 	}
69 69
 
70 70
 	private function parseFunction($function) {
Please login to merge, or discard this patch.
src/Sheet.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
 			$selector = trim(substr($this->tss, $pos, $next-$pos));
23 23
 			$rule = $this->cssToRule($selector, count($rules));	
24
-			$pos =  strpos($this->tss, '}', $next)+1;
24
+			$pos = strpos($this->tss, '}', $next)+1;
25 25
 			$rule->properties = $this->getProperties(trim(substr($this->tss, $next+1, $pos-2-$next)));	
26 26
 			$rules = $this->writeRule($rules, $selector, $rule);
27 27
 		}
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	private function processingInstructions($tss, $pos, $next) {
53 53
 		$rules = [];
54 54
 		while (($atPos = strpos($tss, '@', $pos)) !== false) {
55
-			if ($atPos  <= (int) $next) {
55
+			if ($atPos <= (int) $next) {
56 56
 				$spacePos = strpos($tss, ' ', $atPos);
57 57
 				$funcName = substr($tss, $atPos+1, $spacePos-$atPos-1);
58 58
 				$pos = strpos($tss, ';', $spacePos);
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	}
67 67
 
68 68
 	private function import($args) {
69
-		$sheet = new Sheet(file_get_contents($this->baseDir . trim($args, '\'" ')), $this->baseDir);
69
+		$sheet = new Sheet(file_get_contents($this->baseDir.trim($args, '\'" ')), $this->baseDir);
70 70
 		return $sheet->parse();
71 71
 	}
72 72
 
Please login to merge, or discard this patch.
src/StringExtractor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
 		while (($pos = strpos($str, '"', $pos+1)) !== false) {
18 18
 			$end = strpos($str, '"', $pos+1);
19 19
 			while ($str[$end-1] == '\\') $end = strpos($str, '"', $end+1);
20
-			$strings['$+STR' . ++$num] = substr($str, $pos, $end-$pos+1);
21
-			$str = substr_replace($str, '$+STR' . $num, $pos, $end-$pos+1);
20
+			$strings['$+STR'.++$num] = substr($str, $pos, $end-$pos+1);
21
+			$str = substr_replace($str, '$+STR'.$num, $pos, $end-$pos+1);
22 22
 		}
23 23
 
24 24
 		return [$str, $strings];
Please login to merge, or discard this patch.
src/Template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 		if ($document) return $this->document;
56 56
 
57 57
 
58
-		$output = ($this->document->doctype) ? $this->document->saveXml($this->document->doctype) . "\n" : '';
58
+		$output = ($this->document->doctype) ? $this->document->saveXml($this->document->doctype)."\n" : '';
59 59
 
60 60
 		if ($this->document->documentElement->tagName !== 'template') $output .= $this->document->saveXml($this->document->documentElement, LIBXML_NOEMPTYTAG);
61 61
 		else $output = $this->printDocument($this->document);
Please login to merge, or discard this patch.