Completed
Push — master ( 5bc057...206923 )
by Federico
03:27
created
dist/jate/functions/block.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
 		return jBlockFileMan($_path, $extension, $_parameters);
17 17
 	}
18 18
 
19
+	/**
20
+	 * @param string $_type
21
+	 */
19 22
 	function jBlockFileMan( $_path, $_type, $_parameters = [] ) {
20 23
 		$temp = file_get_contents($_path);
21 24
 		return jBlockParsing($_type, $temp, $_parameters);
Please login to merge, or discard this patch.
dist/jate/modules/Pug/Pug.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -8,6 +8,10 @@
 block discarded – undo
8 8
 		public function drawFile( $_file, $_parameters = [] ) {
9 9
 			return $this->draw($_file, $_parameters);
10 10
 		}
11
+
12
+		/**
13
+		 * @param string $_text
14
+		 */
11 15
 		public function drawText( $_text, $_parameters = [] ) {
12 16
 			return $this->draw(trim($_text), $_parameters);
13 17
 		}
Please login to merge, or discard this patch.
dist/jate/modules/Twig/Twig.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -14,6 +14,10 @@
 block discarded – undo
14 14
 			$page = $template->render($_parameters);
15 15
 			return $page;
16 16
 		}
17
+
18
+		/**
19
+		 * @param string $_text
20
+		 */
17 21
 		public function drawText( $_text, $_parameters = [] ) {
18 22
 			$loader = new Twig_Loader_Array([
19 23
 				'index' => $_text
Please login to merge, or discard this patch.