Passed
Pull Request — master (#879)
by Fabio
14:17 queued 08:31
created
framework/Web/UI/WebControls/TTextBox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
176 176
 				$writer->addAttribute('value', $text);
177 177
 			}
178 178
 
179
-			switch($this->getAutoCompleteType()) {
179
+			switch ($this->getAutoCompleteType()) {
180 180
 				case TTextBoxAutoCompleteType::Enabled:
181 181
 					$writer->addAttribute('autocomplete', 'on');
182 182
 					break;
Please login to merge, or discard this patch.
framework/Util/Cron/TCronModule.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -424,7 +424,7 @@
 block discarded – undo
424 424
 	 */
425 425
 	protected function logCron($numtasks)
426 426
 	{
427
-		Prado::log("Processing {$numtasks} Cron Tasks", TLogger::INFO, TCronModule::class);
427
+		Prado::log("processing {$numtasks} Cron Tasks", TLogger::INFO, TCronModule::class);
428 428
 		$this->dyLogCron($numtasks);
429 429
 		$this->setLastCronTime(microtime(true));
430 430
 	}
Please login to merge, or discard this patch.
framework/TApplication.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -382,7 +382,7 @@
 block discarded – undo
382 382
 					break;
383 383
 				}
384 384
 				$method = self::$_steps[$this->_step];
385
-				Prado::trace("Executing $method()", TApplication::class);
385
+				Prado::trace("executing $method()", TApplication::class);
386 386
 				$this->$method();
387 387
 				$this->_step++;
388 388
 			}
Please login to merge, or discard this patch.