Completed
Push — master ( fe24f6...c47c23 )
by Wanderson
02:39
created
app/model/Win/Calendar/Date.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
 		return (boolean) $this->year == 0;
42 42
 	}
43 43
 
44
+	/**
45
+	 * @return string
46
+	 */
44 47
 	public function getMonthName() {
45 48
 		return self::$monthNames[(int) $this->month];
46 49
 	}
Please login to merge, or discard this patch.
lib/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Autoload Controller
5 5
  */
6
-spl_autoload_register(function ($className) {
6
+spl_autoload_register(function($className) {
7 7
 	$controllerFile = BASE_PATH . '/app/' . str_replace('\\', DIRECTORY_SEPARATOR, $className) . '.php';
8 8
 	if (file_exists($controllerFile)):
9 9
 		return require $controllerFile;
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 /**
14 14
  * Autoload Model
15 15
  */
16
-spl_autoload_register(function ($className) {
16
+spl_autoload_register(function($className) {
17 17
 	$modelFile = BASE_PATH . '/app/model/' . str_replace('\\', DIRECTORY_SEPARATOR, $className) . '.php';
18 18
 	if (file_exists($modelFile)):
19 19
 		return require $modelFile;
Please login to merge, or discard this patch.