Passed
Push — php_updates ( 32d043 )
by Fabio
17:21
created
framework/Util/Cron/TTimeScheduler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 					11 => '(?:november|noviembre|novembre|nov|Ноябрь|Ноя|नवम्बर|نوفمبر)',
117 117
 					12 => '(?:december|dezember|diciembre|décembre|dicembre|dec|dez|déc|dic|Декабрь|Дек|दिसम्बर|ديسمبر)',
118 118
 				],
119
-		self::DAY_OF_WEEK => [ //no Arabic as those are just numbered days of the week
119
+		self::DAY_OF_WEEK => [//no Arabic as those are just numbered days of the week
120 120
 					0 => '(?:sunday|sonntag|sun|son|su|so|domingo|do|d|dimanche|dim|domenica|dom|Воскресенье|Вск|Вс|रविवार|रवि)',
121 121
 					1 => '(?:monday|montag|mon|mo|lune|lu|l|lundi|lun|lunedì|Понедельник|Пнд|Пн|सोमवार|सोम)',
122 122
 					2 => '(?:tuesday|dienstag|die|tue|tu|di|martes|ma|m|k|mardi|mar|martedì|Вторник|Втр|Вт|मंगलवार|मंगल)',
@@ -643,7 +643,7 @@  discard block
 block discarded – undo
643 643
 		$nhour = null;
644 644
 		$z = -1;
645 645
 		$s = (!$days[$lastdata['mday']] || !$months[$lastdata['mon']] || !$years[$year]) ? 0 : $lastdata['hours'];
646
-		for ($i = $s + $hextra, $dextra = 0; $i != $s + $hextra + $z ; $i++) {
646
+		for ($i = $s + $hextra, $dextra = 0; $i != $s + $hextra + $z; $i++) {
647 647
 			if ($i > 23) {
648 648
 				$dextra = 1;
649 649
 				$i = 0;
Please login to merge, or discard this patch.
framework/Shell/Actions/TActiveRecordAction.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
 		$config = $this->getActiveRecordConfig();
138 138
 		$output = $this->getOutputFile($args[2]);
139 139
 		if (is_file($output) && !$this->_overwrite) {
140
-			$this->_outWriter->writeError("File $output already exists, skipping. ");
140
+			$this->_outWriter->writeError("file $output already exists, skipping. ");
141 141
 		} elseif ($config !== false && $output !== false) {
142 142
 			$this->generateActiveRecord($config, $args[1], $output);
143 143
 		}
Please login to merge, or discard this patch.