Test Failed
Push — main ( c8394f...8477f1 )
by Rafael
66:21
created
public/htdocs/core/class/html.formsms.class.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -209,10 +209,10 @@
 block discarded – undo
209 209
             } else {
210 210
                 print '<tr><td class="' . $morecss . '">' . $langs->trans("SmsFrom") . "</td><td>";
211 211
                 if (getDolGlobalString('MAIN_SMS_SENDMODE')) {
212
-                    $sendmode = getDolGlobalString('MAIN_SMS_SENDMODE');    // $conf->global->MAIN_SMS_SENDMODE looks like a value 'module'
213
-                    $classmoduleofsender = getDolGlobalString('MAIN_MODULE_' . strtoupper($sendmode) . '_SMS', $sendmode);  // $conf->global->MAIN_MODULE_XXX_SMS looks like a value 'class@module'
212
+                    $sendmode = getDolGlobalString('MAIN_SMS_SENDMODE'); // $conf->global->MAIN_SMS_SENDMODE looks like a value 'module'
213
+                    $classmoduleofsender = getDolGlobalString('MAIN_MODULE_' . strtoupper($sendmode) . '_SMS', $sendmode); // $conf->global->MAIN_MODULE_XXX_SMS looks like a value 'class@module'
214 214
                     if ($classmoduleofsender == 'ovh') {
215
-                        $classmoduleofsender = 'ovhsms@ovh';    // For backward compatibility
215
+                        $classmoduleofsender = 'ovhsms@ovh'; // For backward compatibility
216 216
                     }
217 217
 
218 218
                     $tmp = explode('@', $classmoduleofsender);
Please login to merge, or discard this patch.
public/htdocs/core/class/lessc.class.php 1 patch
Spacing   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
 	protected function findImport($url)
80 80
 	{
81 81
 		foreach ((array) $this->importDir as $dir) {
82
-			$full = $dir.(substr($dir, -1) != '/' ? '/' : '').$url;
83
-			if ($this->fileExists($file = $full.'.less') || $this->fileExists($file = $full)) {
82
+			$full = $dir . (substr($dir, -1) != '/' ? '/' : '') . $url;
83
+			if ($this->fileExists($file = $full . '.less') || $this->fileExists($file = $full)) {
84 84
 				return $file;
85 85
 			}
86 86
 		}
@@ -231,9 +231,9 @@  discard block
 block discarded – undo
231 231
 				$this->compileMedia($block);
232 232
 				break;
233 233
 			case "directive":
234
-				$name = "@".$block->name;
234
+				$name = "@" . $block->name;
235 235
 				if (!empty($block->value)) {
236
-					$name .= " ".$this->compileValue($this->reduce($block->value));
236
+					$name .= " " . $this->compileValue($this->reduce($block->value));
237 237
 				}
238 238
 
239 239
 				$this->compileNestedBlock($block, array($name));
@@ -405,8 +405,8 @@  discard block
 block discarded – undo
405 405
 						break;
406 406
 					case "mediaExp":
407 407
 						if (isset($q[2])) {
408
-							$parts[] = "($q[1]: ".
409
-								$this->compileValue($this->reduce($q[2])).")";
408
+							$parts[] = "($q[1]: " .
409
+								$this->compileValue($this->reduce($q[2])) . ")";
410 410
 						} else {
411 411
 							$parts[] = "($q[1])";
412 412
 						}
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
 
425 425
 		$out = "@media";
426 426
 		if (!empty($parts)) {
427
-			$out .= " ".
427
+			$out .= " " .
428 428
 				implode($this->formatter->selectorSeparator, $compiledQueries);
429 429
 		}
430 430
 		return $out;
@@ -511,7 +511,7 @@  discard block
 block discarded – undo
511 511
 				if ($count > 0) {
512 512
 					$out[] = trim($child);
513 513
 				} else {
514
-					$out[] = trim($parent.' '.$child);
514
+					$out[] = trim($parent . ' ' . $child);
515 515
 				}
516 516
 			}
517 517
 		}
@@ -716,7 +716,7 @@  discard block
 block discarded – undo
716 716
 					$value = $a[2];
717 717
 				} else {
718 718
 					$value = null; // :(
719
-					$this->throwError("Failed to assign arg ".$a[1]); // This ends function by throwing an exception
719
+					$this->throwError("Failed to assign arg " . $a[1]); // This ends function by throwing an exception
720 720
 				}
721 721
 
722 722
 				$value = $this->reduce($value);
@@ -781,7 +781,7 @@  discard block
 block discarded – undo
781 781
 							$orderedArgs[] = $this->reduce($arg[1]);
782 782
 							break;
783 783
 						default:
784
-							$this->throwError("Unknown arg type: ".$arg[0]);
784
+							$this->throwError("Unknown arg type: " . $arg[0]);
785 785
 					}
786 786
 				}
787 787
 
@@ -846,7 +846,7 @@  discard block
 block discarded – undo
846 846
 				break;
847 847
 			case "directive":
848 848
 				list(, $name, $value) = $prop;
849
-				$out->lines[] = "@$name ".$this->compileValue($this->reduce($value)).';';
849
+				$out->lines[] = "@$name " . $this->compileValue($this->reduce($value)) . ';';
850 850
 				break;
851 851
 			case "comment":
852 852
 				$out->lines[] = $prop[1];
@@ -862,7 +862,7 @@  discard block
 block discarded – undo
862 862
 				$result = $this->tryImport($importPath, $block, $out);
863 863
 
864 864
 				$this->env->imports[$importId] = $result === false ?
865
-					array(false, "@import ".$this->compileValue($importPath).";") : $result;
865
+					array(false, "@import " . $this->compileValue($importPath) . ";") : $result;
866 866
 
867 867
 				break;
868 868
 			case "import_mixin":
@@ -917,7 +917,7 @@  discard block
 block discarded – undo
917 917
 				if ($this->numberPrecision !== null) {
918 918
 					$num = round($num, $this->numberPrecision);
919 919
 				}
920
-				return $num.$unit;
920
+				return $num . $unit;
921 921
 			case 'string':
922 922
 				// [1] - contents of string (includes quotes)
923 923
 				list(, $delim, $content) = $value;
@@ -926,7 +926,7 @@  discard block
 block discarded – undo
926 926
 						$part = $this->compileValue($part);
927 927
 					}
928 928
 				}
929
-				return $delim.implode($content).$delim;
929
+				return $delim . implode($content) . $delim;
930 930
 			case 'color':
931 931
 				// [1] - red component (either number or a %)
932 932
 				// [2] - green component
@@ -938,7 +938,7 @@  discard block
 block discarded – undo
938 938
 				$b = round($b);
939 939
 
940 940
 				if (count($value) == 5 && $value[4] != 1) { // rgba
941
-					return 'rgba('.$r.','.$g.','.$b.','.$value[4].')';
941
+					return 'rgba(' . $r . ',' . $g . ',' . $b . ',' . $value[4] . ')';
942 942
 				}
943 943
 
944 944
 				$h = sprintf("#%02x%02x%02x", $r, $g, $b);
@@ -946,7 +946,7 @@  discard block
 block discarded – undo
946 946
 				if (!empty($this->formatter->compressColors)) {
947 947
 					// Converting hex color to short notation (e.g. #003399 to #039)
948 948
 					if ($h[1] === $h[2] && $h[3] === $h[4] && $h[5] === $h[6]) {
949
-						$h = '#'.$h[1].$h[3].$h[5];
949
+						$h = '#' . $h[1] . $h[3] . $h[5];
950 950
 					}
951 951
 				}
952 952
 
@@ -954,7 +954,7 @@  discard block
 block discarded – undo
954 954
 
955 955
 			case 'function':
956 956
 				list(, $name, $args) = $value;
957
-				return $name.'('.$this->compileValue($args).')';
957
+				return $name . '(' . $this->compileValue($args) . ')';
958 958
 			default: // assumed to be unit
959 959
 				$this->throwError("unknown value type: $value[0]");
960 960
 		}
@@ -1119,7 +1119,7 @@  discard block
 block discarded – undo
1119 1119
 			}
1120 1120
 		}
1121 1121
 
1122
-		return 'url("'.$url.'")';
1122
+		return 'url("' . $url . '")';
1123 1123
 	}
1124 1124
 
1125 1125
 	// utility func to unquote a string
@@ -1167,7 +1167,7 @@  discard block
 block discarded – undo
1167 1167
 				$i++;
1168 1168
 				$rep = $this->compileValue($this->lib_e($val));
1169 1169
 				$template = preg_replace(
1170
-					'/'.self::preg_quote($match).'/',
1170
+					'/' . self::preg_quote($match) . '/',
1171 1171
 					$rep,
1172 1172
 					$template,
1173 1173
 					1
@@ -1520,7 +1520,7 @@  discard block
 block discarded – undo
1520 1520
 			$numValues = count($values);
1521 1521
 			if ($expectedArgs != $numValues) {
1522 1522
 				if ($name) {
1523
-					$name = $name.": ";
1523
+					$name = $name . ": ";
1524 1524
 				}
1525 1525
 
1526 1526
 				$this->throwError("{$name}expecting $expectedArgs arguments, got $numValues");
@@ -1712,7 +1712,7 @@  discard block
 block discarded – undo
1712 1712
 			case "interpolate":
1713 1713
 				$reduced = $this->reduce($value[1]);
1714 1714
 				$var = $this->compileValue($reduced);
1715
-				$res = $this->reduce(array("variable", $this->vPrefix.$var));
1715
+				$res = $this->reduce(array("variable", $this->vPrefix . $var));
1716 1716
 
1717 1717
 				if ($res[0] == "raw_color") {
1718 1718
 					$res = $this->coerceColor($res);
@@ -1727,7 +1727,7 @@  discard block
 block discarded – undo
1727 1727
 				$key = $value[1];
1728 1728
 				if (is_array($key)) {
1729 1729
 					$key = $this->reduce($key);
1730
-					$key = $this->vPrefix.$this->compileValue($this->lib_e($key));
1730
+					$key = $this->vPrefix . $this->compileValue($this->lib_e($key));
1731 1731
 				}
1732 1732
 
1733 1733
 				$seen = & $this->env->seenNames;
@@ -1773,7 +1773,7 @@  discard block
 block discarded – undo
1773 1773
 				}
1774 1774
 
1775 1775
 				$f = isset($this->libFunctions[$name]) ?
1776
-					$this->libFunctions[$name] : array($this, 'lib_'.str_replace('-', '_', $name));
1776
+					$this->libFunctions[$name] : array($this, 'lib_' . str_replace('-', '_', $name));
1777 1777
 
1778 1778
 				if (is_callable($f)) {
1779 1779
 					if ($args[0] == 'list') {
@@ -1849,7 +1849,7 @@  discard block
 block discarded – undo
1849 1849
 					$t = intval($num) % $width;
1850 1850
 					$num /= $width;
1851 1851
 
1852
-					$c[$i] = $t * (256 / $width) + $t * floor(16/$width);
1852
+					$c[$i] = $t * (256 / $width) + $t * floor(16 / $width);
1853 1853
 				}
1854 1854
 
1855 1855
 				return $c;
@@ -1938,7 +1938,7 @@  discard block
 block discarded – undo
1938 1938
 		// make the expression look it did before being parsed
1939 1939
 		$paddedOp = $op;
1940 1940
 		if ($whiteBefore) {
1941
-			$paddedOp = " ".$paddedOp;
1941
+			$paddedOp = " " . $paddedOp;
1942 1942
 		}
1943 1943
 		if ($whiteAfter) {
1944 1944
 			$paddedOp .= " ";
@@ -2028,7 +2028,7 @@  discard block
 block discarded – undo
2028 2028
 					$out[] = $lval / $rval;
2029 2029
 					break;
2030 2030
 				default:
2031
-					$this->throwError('evaluate error: color op number failed on op '.$op);
2031
+					$this->throwError('evaluate error: color op number failed on op ' . $op);
2032 2032
 			}
2033 2033
 		}
2034 2034
 		return $this->fixColor($out);
@@ -2099,7 +2099,7 @@  discard block
 block discarded – undo
2099 2099
 			case '=<':
2100 2100
 				return $this->toBool($left[1] <= $right[1]);
2101 2101
 			default:
2102
-				$this->throwError('parse error: unknown number operator: '.$op);
2102
+				$this->throwError('parse error: unknown number operator: ' . $op);
2103 2103
 		}
2104 2104
 
2105 2105
 		return array("number", $value, $unit);
@@ -2151,7 +2151,7 @@  discard block
 block discarded – undo
2151 2151
 	{
2152 2152
 		$current = $this->env;
2153 2153
 
2154
-		$isArguments = $name == $this->vPrefix.'arguments';
2154
+		$isArguments = $name == $this->vPrefix . 'arguments';
2155 2155
 		while ($current) {
2156 2156
 			if ($isArguments && isset($current->arguments)) {
2157 2157
 				return array('list', ' ', $current->arguments);
@@ -2176,7 +2176,7 @@  discard block
 block discarded – undo
2176 2176
 		$value = null;
2177 2177
 		foreach ($args as $name => $strValue) {
2178 2178
 			if ($name[0] !== '@') {
2179
-				$name = '@'.$name;
2179
+				$name = '@' . $name;
2180 2180
 			}
2181 2181
 			$parser->count = 0;
2182 2182
 			$parser->buffer = (string) $strValue;
@@ -2230,7 +2230,7 @@  discard block
 block discarded – undo
2230 2230
 	public function compileFile($fname, $outFname = null)
2231 2231
 	{
2232 2232
 		if (!is_readable($fname)) {
2233
-			throw new Exception('load error: failed to find '.$fname);
2233
+			throw new Exception('load error: failed to find ' . $fname);
2234 2234
 		}
2235 2235
 
2236 2236
 		$pi = pathinfo($fname);
@@ -2238,7 +2238,7 @@  discard block
 block discarded – undo
2238 2238
 		$oldImport = $this->importDir;
2239 2239
 
2240 2240
 		$this->importDir = (array) $this->importDir;
2241
-		$this->importDir[] = $pi['dirname'].'/';
2241
+		$this->importDir[] = $pi['dirname'] . '/';
2242 2242
 
2243 2243
 		$this->addParsedFile($fname);
2244 2244
 
@@ -2684,17 +2684,17 @@  discard block
 block discarded – undo
2684 2684
 
2685 2685
 		if (!self::$operatorString) {
2686 2686
 			self::$operatorString =
2687
-				'('.implode('|', array_map(
2687
+				'(' . implode('|', array_map(
2688 2688
 					array('lessc', 'preg_quote'),
2689 2689
 					array_keys(self::$precedence)
2690
-				)).')';
2690
+				)) . ')';
2691 2691
 
2692 2692
 			$commentSingle = Lessc::preg_quote(self::$commentSingle);
2693 2693
 			$commentMultiLeft = Lessc::preg_quote(self::$commentMultiLeft);
2694 2694
 			$commentMultiRight = Lessc::preg_quote(self::$commentMultiRight);
2695 2695
 
2696
-			self::$commentMulti = $commentMultiLeft.'.*?'.$commentMultiRight;
2697
-			self::$whitePattern = '/'.$commentSingle.'[^\n]*\s*|('.self::$commentMulti.')\s*|\s+/Ais';
2696
+			self::$commentMulti = $commentMultiLeft . '.*?' . $commentMultiRight;
2697
+			self::$whitePattern = '/' . $commentSingle . '[^\n]*\s*|(' . self::$commentMulti . ')\s*|\s+/Ais';
2698 2698
 		}
2699 2699
 	}
2700 2700
 
@@ -2727,7 +2727,7 @@  discard block
 block discarded – undo
2727 2727
 		while (false !== $this->parseChunk());
2728 2728
 
2729 2729
 		if ($this->count != strlen($this->buffer)) {
2730
-			$this->throwError('parse error count '.$this->count.' != len buffer '.strlen($this->buffer));
2730
+			$this->throwError('parse error count ' . $this->count . ' != len buffer ' . strlen($this->buffer));
2731 2731
 
2732 2732
 		}
2733 2733
 
@@ -2934,7 +2934,7 @@  discard block
 block discarded – undo
2934 2934
 		// mixin
2935 2935
 		if ($this->mixinTags($tags) &&
2936 2936
 			$this->argumentDef($argv, $isVararg) &&
2937
-			$this->keyword($suffix)  && $this->end()
2937
+			$this->keyword($suffix) && $this->end()
2938 2938
 		) {
2939 2939
 			$tags = $this->fixTags($tags);
2940 2940
 			$this->append(array('mixin', $tags, $argv, $suffix), $s);
@@ -2958,7 +2958,7 @@  discard block
 block discarded – undo
2958 2958
 			"|",
2959 2959
 			array_map(array("lessc", "preg_quote"), $directives)
2960 2960
 		);
2961
-		$pattern = '/^(-[a-z-]+-)?('.$pattern.')$/i';
2961
+		$pattern = '/^(-[a-z-]+-)?(' . $pattern . ')$/i';
2962 2962
 
2963 2963
 		return preg_match($pattern, $dirname);
2964 2964
 	}
@@ -3042,7 +3042,7 @@  discard block
 block discarded – undo
3042 3042
 			$needWhite = $whiteBefore && !$this->inParens;
3043 3043
 
3044 3044
 			$m = array();
3045
-			if ($this->match(self::$operatorString.($needWhite ? '\s' : ''), $m) && self::$precedence[$m[1]] >= $minP) {
3045
+			if ($this->match(self::$operatorString . ($needWhite ? '\s' : ''), $m) && self::$precedence[$m[1]] >= $minP) {
3046 3046
 				if (!$this->inParens && isset($this->env->currentProperty) && $m[1] == "/" && empty($this->env->supressedDivision)) {
3047 3047
 					foreach (self::$supressDivisionProps as $pattern) {
3048 3048
 						if (preg_match($pattern, $this->env->currentProperty)) {
@@ -3204,7 +3204,7 @@  discard block
 block discarded – undo
3204 3204
 		// css hack: \0
3205 3205
 		$m = array();
3206 3206
 		if ($this->literal('\\') && $this->match('([0-9]+)', $m)) {
3207
-			$value = array('keyword', '\\'.$m[1]);
3207
+			$value = array('keyword', '\\' . $m[1]);
3208 3208
 			return true;
3209 3209
 		} else {
3210 3210
 			$this->seek($s);
@@ -3328,7 +3328,7 @@  discard block
 block discarded – undo
3328 3328
 			$stop = array_merge($stop, $rejectStrs);
3329 3329
 		}
3330 3330
 
3331
-		$patt = '(.*?)('.implode("|", $stop).')';
3331
+		$patt = '(.*?)(' . implode("|", $stop) . ')';
3332 3332
 
3333 3333
 		$nestingLevel = 0;
3334 3334
 
@@ -3402,8 +3402,8 @@  discard block
 block discarded – undo
3402 3402
 		$content = array();
3403 3403
 
3404 3404
 		// look for either ending delim , escape, or string interpolation
3405
-		$patt = '([^\n]*?)(@\{|\\\\|'.
3406
-			Lessc::preg_quote($delim).')';
3405
+		$patt = '([^\n]*?)(@\{|\\\\|' .
3406
+			Lessc::preg_quote($delim) . ')';
3407 3407
 
3408 3408
 		$oldWhite = $this->eatWhiteDefault;
3409 3409
 		$this->eatWhiteDefault = false;
@@ -3750,7 +3750,7 @@  discard block
 block discarded – undo
3750 3750
 
3751 3751
 		while (true) {
3752 3752
 			$m = array();
3753
-			if ($this->match('(['.$chars.'0-9]['.$chars.']*)', $m)) {
3753
+			if ($this->match('([' . $chars . '0-9][' . $chars . ']*)', $m)) {
3754 3754
 				$parts[] = $m[1];
3755 3755
 				if ($simple) {
3756 3756
 					break;
@@ -3863,7 +3863,7 @@  discard block
 block discarded – undo
3863 3863
 			if (!empty($sub)) {
3864 3864
 				$name = array('variable', $sub);
3865 3865
 			} else {
3866
-				$name = $this->lessc->vPrefix.$name;
3866
+				$name = $this->lessc->vPrefix . $name;
3867 3867
 			}
3868 3868
 			return true;
3869 3869
 		}
@@ -4050,7 +4050,7 @@  discard block
 block discarded – undo
4050 4050
 			$validChars = $allowNewline ? "." : "[^\n]";
4051 4051
 		}
4052 4052
 		$m = array();
4053
-		if (!$this->match('('.$validChars.'*?)'.Lessc::preg_quote($what), $m, !$until)) {
4053
+		if (!$this->match('(' . $validChars . '*?)' . Lessc::preg_quote($what), $m, !$until)) {
4054 4054
 			return false;
4055 4055
 		}
4056 4056
 		if ($until) {
@@ -4067,7 +4067,7 @@  discard block
 block discarded – undo
4067 4067
 			$eatWhitespace = $this->eatWhiteDefault;
4068 4068
 		}
4069 4069
 
4070
-		$r = '/'.$regex.($eatWhitespace && !$this->writeComments ? '\s*' : '').'/Ais';
4070
+		$r = '/' . $regex . ($eatWhitespace && !$this->writeComments ? '\s*' : '') . '/Ais';
4071 4071
 		if (preg_match($r, $this->buffer, $out, 0, $this->count)) {
4072 4072
 			$this->count += strlen($out[0]);
4073 4073
 			if ($eatWhitespace && $this->writeComments) {
@@ -4105,7 +4105,7 @@  discard block
 block discarded – undo
4105 4105
 		if (is_null($from)) {
4106 4106
 			$from = $this->count;
4107 4107
 		}
4108
-		$r = '/'.$regex.'/Ais';
4108
+		$r = '/' . $regex . '/Ais';
4109 4109
 		$result = preg_match($r, $this->buffer, $out, 0, $from);
4110 4110
 
4111 4111
 		return $result;
@@ -4225,7 +4225,7 @@  discard block
 block discarded – undo
4225 4225
 				case '"':
4226 4226
 				case "'":
4227 4227
 					$m = array();
4228
-					if (preg_match('/'.$min[0].'.*?(?<!\\\\)'.$min[0].'/', $text, $m, 0, $count)) {
4228
+					if (preg_match('/' . $min[0] . '.*?(?<!\\\\)' . $min[0] . '/', $text, $m, 0, $count)) {
4229 4229
 						$count += strlen($m[0]) - 1;
4230 4230
 					}
4231 4231
 					break;
@@ -4250,13 +4250,13 @@  discard block
 block discarded – undo
4250 4250
 				$count += strlen($min[0]);
4251 4251
 			}
4252 4252
 
4253
-			$out .= substr($text, 0, $count).str_repeat("\n", $newlines);
4253
+			$out .= substr($text, 0, $count) . str_repeat("\n", $newlines);
4254 4254
 			$text = substr($text, $count + $skip);
4255 4255
 
4256 4256
 			$min = null;
4257 4257
 		}
4258 4258
 
4259
-		return $out.$text;
4259
+		return $out . $text;
4260 4260
 	}
4261 4261
 }
4262 4262
 
@@ -4291,7 +4291,7 @@  discard block
 block discarded – undo
4291 4291
 
4292 4292
 	public function property($name, $value)
4293 4293
 	{
4294
-		return $name.$this->assignSeparator.$value.";";
4294
+		return $name . $this->assignSeparator . $value . ";";
4295 4295
 	}
4296 4296
 
4297 4297
 	protected function isEmpty($block)
@@ -4323,25 +4323,25 @@  discard block
 block discarded – undo
4323 4323
 			$this->indentLevel++;
4324 4324
 
4325 4325
 			if ($this->breakSelectors) {
4326
-				$selectorSeparator = $this->selectorSeparator.$this->break.$pre;
4326
+				$selectorSeparator = $this->selectorSeparator . $this->break . $pre;
4327 4327
 			} else {
4328 4328
 				$selectorSeparator = $this->selectorSeparator;
4329 4329
 			}
4330 4330
 
4331
-			echo $pre.
4331
+			echo $pre .
4332 4332
 				implode($selectorSeparator, $block->selectors);
4333 4333
 			if ($isSingle) {
4334 4334
 				echo $this->openSingle;
4335 4335
 				$inner = "";
4336 4336
 			} else {
4337
-				echo $this->open.$this->break;
4337
+				echo $this->open . $this->break;
4338 4338
 				$inner = $this->indentStr();
4339 4339
 			}
4340 4340
 		}
4341 4341
 
4342 4342
 		if (!empty($block->lines)) {
4343
-			$glue = $this->break.$inner;
4344
-			echo $inner.implode($glue, $block->lines);
4343
+			$glue = $this->break . $inner;
4344
+			echo $inner . implode($glue, $block->lines);
4345 4345
 			if (!$isSingle && !empty($block->children)) {
4346 4346
 				echo $this->break;
4347 4347
 			}
@@ -4357,9 +4357,9 @@  discard block
 block discarded – undo
4357 4357
 			}
4358 4358
 
4359 4359
 			if ($isSingle) {
4360
-				echo $this->closeSingle.$this->break;
4360
+				echo $this->closeSingle . $this->break;
4361 4361
 			} else {
4362
-				echo $pre.$this->close.$this->break;
4362
+				echo $pre . $this->close . $this->break;
4363 4363
 			}
4364 4364
 
4365 4365
 			$this->indentLevel--;
Please login to merge, or discard this patch.
public/htdocs/core/class/discount.class.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,16 +47,16 @@
 block discarded – undo
47 47
     public $total_ht;
48 48
     public $total_tva;
49 49
     public $total_ttc;
50
-    public $amount_ht;  // deprecated
50
+    public $amount_ht; // deprecated
51 51
     public $amount_tva; // deprecated
52 52
     public $amount_ttc; // deprecated
53 53
 
54 54
     public $multicurrency_total_ht;
55 55
     public $multicurrency_total_tva;
56 56
     public $multicurrency_total_ttc;
57
-    public $multicurrency_amount_ht;    // deprecated
58
-    public $multicurrency_amount_tva;   // deprecated
59
-    public $multicurrency_amount_ttc;   // deprecated
57
+    public $multicurrency_amount_ht; // deprecated
58
+    public $multicurrency_amount_tva; // deprecated
59
+    public $multicurrency_amount_ttc; // deprecated
60 60
 
61 61
     /**
62 62
      * @var double
Please login to merge, or discard this patch.
public/htdocs/core/class/smtps.class.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
                 }
589 589
                 // Most servers expect a 2nd pass of EHLO after TLS is established to get another time
590 590
                 // the answer with list of supported AUTH methods. They may differs between non STARTTLS and with STARTTLS.
591
-                if (! $_retVal = $this->socket_send_str('EHLO ' . $hosth, '250')) {
591
+                if (!$_retVal = $this->socket_send_str('EHLO ' . $hosth, '250')) {
592 592
                     $this->_setErr(126, '"' . $hosth . '" does not support authenticated connections or temporary error. Error after 2nd sending EHLO ' . $hosth . ' : ' . $this->lastretval);
593 593
                     return $_retVal;
594 594
                 }
@@ -1709,7 +1709,7 @@  discard block
 block discarded – undo
1709 1709
             $this->_msgContent['attachment'][$strFileName]['mimeType'] = $strMimeType;
1710 1710
             $this->_msgContent['attachment'][$strFileName]['fileName'] = $strFileName;
1711 1711
             $this->_msgContent['attachment'][$strFileName]['data']     = $strContent;
1712
-            $this->_msgContent['attachment'][$strFileName]['cid']      = $strCid;       // If defined, it means this attachment must be shown inline
1712
+            $this->_msgContent['attachment'][$strFileName]['cid']      = $strCid; // If defined, it means this attachment must be shown inline
1713 1713
 
1714 1714
             if ($this->getMD5flag()) {
1715 1715
                 $this->_msgContent['attachment'][$strFileName]['md5'] = dol_hash($strContent, 3);
Please login to merge, or discard this patch.
public/htdocs/core/class/notify.class.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
                 $this->fk_user = $obj->fk_user;
368 368
                 $this->email = $obj->email;
369 369
                 $this->threshold = $obj->threshold;
370
-                $this->context  = $obj->context;
370
+                $this->context = $obj->context;
371 371
                 $this->datec = $this->db->jdate($obj->datec);
372 372
                 $this->datem = $this->db->jdate($obj->datem);
373 373
             }
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
                     while ($i < $num) {
489 489
                         $obj = $this->db->fetch_object($resql);
490 490
                         // we want to notify only if contact is enable
491
-                        if ($obj && $obj->status ==  1) {
491
+                        if ($obj && $obj->status == 1) {
492 492
                             $newval2 = trim($obj->email);
493 493
                             $isvalid = isValidEmail($newval2);
494 494
                             if (empty($resarray[$newval2])) {
Please login to merge, or discard this patch.
public/htdocs/core/class/html.formactions.class.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -366,7 +366,7 @@
 block discarded – undo
366 366
         $caction = new CActionComm($this->db);
367 367
 
368 368
         // Suggest a list with manual events or all auto events
369
-        $arraylist = $caction->liste_array(1, 'code', $excludetype, $onlyautoornot, '', 0);     // If we use param 'all' instead of 'code', there is no group by include in answer but the key 'type' of answer array contains the key for the group by.
369
+        $arraylist = $caction->liste_array(1, 'code', $excludetype, $onlyautoornot, '', 0); // If we use param 'all' instead of 'code', there is no group by include in answer but the key 'type' of answer array contains the key for the group by.
370 370
         if (empty($multiselect)) {
371 371
             // Add empty line at start only if no multiselect
372 372
             array_unshift($arraylist, '&nbsp;');
Please login to merge, or discard this patch.
public/htdocs/core/extrafieldsinexport.inc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
             case 'sellist':
51 51
                 $tmp = '';
52 52
                 $tmpparam = jsonOrUnserialize($obj->param); // $tmp may be array 'options' => array 'c_currencies:code_iso:code_iso' => null
53
-                if (is_array($tmpparam) && array_key_exists('options', $tmpparam) &&  $tmpparam['options'] && is_array($tmpparam['options'])) {
53
+                if (is_array($tmpparam) && array_key_exists('options', $tmpparam) && $tmpparam['options'] && is_array($tmpparam['options'])) {
54 54
                     $tmpkeys = array_keys($tmpparam['options']);
55 55
                     $tmp = array_shift($tmpkeys);
56 56
                 }
Please login to merge, or discard this patch.
public/htdocs/core/search_page.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 $title = $langs->trans("Search");
104 104
 
105 105
 // URL http://mydolibarr/core/search_page?dol_use_jmobile=1 can be used for tests
106
-$head = '<!-- Quick access -->' . "\n";   // This is used by DoliDroid to know page is a search page
106
+$head = '<!-- Quick access -->' . "\n"; // This is used by DoliDroid to know page is a search page
107 107
 $arrayofjs = array();
108 108
 $arrayofcss = array();
109 109
 top_htmlhead($head, $title, 0, 0, $arrayofjs, $arrayofcss);
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 
144 144
         $accesskey = '';
145 145
         if (empty($accesskeyalreadyassigned[$val['label'][0]])) {
146
-            $accesskey = $val['label'][0];  // First char of string
146
+            $accesskey = $val['label'][0]; // First char of string
147 147
             $accesskeyalreadyassigned[$accesskey] = $accesskey;
148 148
         }
149 149
 
Please login to merge, or discard this patch.
public/htdocs/core/get_menudiv.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
 $title = $langs->trans("Menu");
98 98
 
99 99
 // URL http://mydolibarr/core/get_menudiv.php?dol_use_jmobile=1 can be used for tests
100
-$head = '<!-- Menu -->' . "\n";   // This is used by DoliDroid to know page is a menu page
100
+$head = '<!-- Menu -->' . "\n"; // This is used by DoliDroid to know page is a menu page
101 101
 $arrayofjs = array();
102 102
 $arrayofcss = array();
103 103
 top_htmlhead($head, $title, 0, 0, $arrayofjs, $arrayofcss);
Please login to merge, or discard this patch.