Completed
Push — master ( 5a5aff...6d6efd )
by Joram van den
04:02
created
lib/Ajde/Template.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -5,6 +5,9 @@  discard block
 block discarded – undo
5 5
     protected $_contents = null;
6 6
     protected $_table = [];
7 7
 
8
+    /**
9
+     * @param string $base
10
+     */
8 11
     public function  __construct($base, $action, $format = 'html')
9 12
     {
10 13
         $this->set('base', $base);
@@ -34,6 +37,9 @@  discard block
 block discarded – undo
34 37
         $this->setFileinfo();
35 38
     }
36 39
 
40
+    /**
41
+     * @param string $action
42
+     */
37 43
     public function setAction($action)
38 44
     {
39 45
         $this->set('action', $action);
@@ -113,6 +119,9 @@  discard block
 block discarded – undo
113 119
         return $this->get('parser');
114 120
     }
115 121
 
122
+    /**
123
+     * @param string $base
124
+     */
116 125
     public static function exist($base, $action, $format = 'html')
117 126
     {
118 127
         return self::_getFileInfo($base, $action, $format);
Please login to merge, or discard this patch.