Completed
Push — master ( 895d73...5bc057 )
by Federico
02:36
created
dist/jate/modules/Pug/Pug.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -9,6 +9,10 @@
 block discarded – undo
9 9
 		public function drawFile( $_template ) {
10 10
 			return $this->draw($_template);
11 11
 		}
12
+
13
+		/**
14
+		 * @param string $_template
15
+		 */
12 16
 		public function drawText( $_template ) {
13 17
 			return $this->draw(trim($_template));
14 18
 		}
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 		public function __construct() {
7 7
 			parent::__construct();
8 8
 		}
9
-		public function drawFile( $_template ) {
9
+		public function drawFile($_template) {
10 10
 			return $this->draw($_template);
11 11
 		}
12
-		public function drawText( $_template ) {
12
+		public function drawText($_template) {
13 13
 			return $this->draw(trim($_template));
14 14
 		}
15
-		public function draw( $_template ) {
15
+		public function draw($_template) {
16 16
 			$Parsedown = new Parsedown\Parsedown();
17 17
 			$page = $Parsedown->text($_template);
18 18
 			return $page;
Please login to merge, or discard this patch.