Completed
Push — master ( 89f95d...43ee50 )
by Wanderson
02:15
created
app/model/Win/Alert/Alert.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
 
31 31
 	/**
32 32
 	 * Carrega o html do alerta
33
-	 * @param Alert $alert
34 33
 	 */
35 34
 	public function load() {
36 35
 		$block = new Block('layout/html/alert', ['alert' => $this]);
Please login to merge, or discard this patch.
app/model/Win/Mvc/Controller.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@  discard block
 block discarded – undo
37 37
 	}
38 38
 
39 39
 
40
+	/**
41
+	 * @param string $title
42
+	 */
40 43
 	public function setTitle($title) {
41 44
 		$this->addData('title', $title);
42 45
 	}
@@ -142,7 +145,7 @@  discard block
 block discarded – undo
142 145
 	 * Evita chamada de um metodo que nao existe
143 146
 	 * @param string $name
144 147
 	 * @param mixed[] $arguments
145
-	 * @return boolean
148
+	 * @return boolean|null
146 149
 	 */
147 150
 	public function __call($name, $arguments) {
148 151
 		$this->app->pageNotFound();
Please login to merge, or discard this patch.