Completed
Push — master ( 367661...0edf32 )
by Joram van den
03:48
created
lib/Ajde/Resource.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@  discard block
 block discarded – undo
24 24
         return $this->get('type');
25 25
     }
26 26
 
27
+    /**
28
+     * @param integer $position
29
+     */
27 30
     public function setPosition($position)
28 31
     {
29 32
         $this->set('position', $position);
@@ -94,6 +97,9 @@  discard block
 block discarded – undo
94 97
         return base64_decode($string);
95 98
     }
96 99
 
100
+    /**
101
+     * @param string $string
102
+     */
97 103
     public static function _urlEncode($string)
98 104
     {
99 105
         // return self::_rotUrl($string);
Please login to merge, or discard this patch.
lib/Ajde/Lang.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -209,6 +209,10 @@
 block discarded – undo
209 209
         $this->setLang($this->detect());
210 210
     }
211 211
 
212
+    /**
213
+     * @param string $ident
214
+     * @param string $module
215
+     */
212 216
     public static function trans($ident, $module = null)
213 217
     {
214 218
         return self::getInstance()->translate($ident, $module);
Please login to merge, or discard this patch.