Completed
Push — version1.x ( 6e72a3...d4a6f6 )
by Sebastian
04:16
created
src/CiteProc.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -112,6 +112,10 @@
 block discarded – undo
112 112
         }
113 113
     }
114 114
 
115
+    /**
116
+     * @param string $csl
117
+     * @param string $lang
118
+     */
115 119
     private function init($csl, $lang) {
116 120
         // define field values appropriate to your data in the csl_mapper class and un-comment the next line.        
117 121
         $this->mapper = new Mapper();
Please login to merge, or discard this patch.
src/Layout.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@
 block discarded – undo
35 35
         parent::initFormatting();
36 36
     }
37 37
 
38
+    /**
39
+     * @param string $mode
40
+     */
38 41
     public function render($data, $mode = null)
39 42
     {
40 43
         //$text = '';
Please login to merge, or discard this patch.
src/Locale.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -91,6 +91,9 @@  discard block
 block discarded – undo
91 91
      */
92 92
     protected $styleLocale;
93 93
 
94
+    /**
95
+     * @param string $lang
96
+     */
94 97
     private static function getLocalesFileName($lang) {
95 98
 
96 99
         include_once __DIR__.'/../vendorPath.php';
@@ -136,6 +139,10 @@  discard block
 block discarded – undo
136 139
         }
137 140
     }
138 141
 
142
+    /**
143
+     * @param string $type
144
+     * @param string $arg3
145
+     */
139 146
     public function locale($type, $arg1, $arg2 = NULL, $arg3 = NULL) {
140 147
 
141 148
         switch ($type) {
Please login to merge, or discard this patch.
src/Name.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -306,6 +306,9 @@
 block discarded – undo
306 306
             $print, $punct, $space, $upper, $word, $patternModifiers);
307 307
     }
308 308
 
309
+    /**
310
+     * @return string
311
+     */
309 312
     protected function format($text, $part = 'base')
310 313
     {
311 314
 
Please login to merge, or discard this patch.