Completed
Push — master ( 9de5fd...4909a4 )
by Ben
01:30 queued 10s
created
src/DirectoryListing.php 1 patch
Doc Comments   +9 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     //////////////////////////// SETTERS AND GETTERS \\\\\\\\\\\\\\\\\\\\\\\\\\\
57 57
     /**
58
-     * @return array
58
+     * @return string
59 59
      */
60 60
     private function getCurrentRealDirectory()
61 61
     {
@@ -131,6 +131,11 @@  discard block
 block discarded – undo
131 131
     }
132 132
 
133 133
     ////////////////////////////// UTILITY METHODS \\\\\\\\\\\\\\\\\\\\\\\\\\\\\
134
+
135
+    /**
136
+     * @param string $p_sFile
137
+     * @param string $p_sThemeDir
138
+     */
134 139
     private function getAssetPath($p_sFile, $p_sThemeDir)
135 140
     {
136 141
 
@@ -333,7 +338,7 @@  discard block
 block discarded – undo
333 338
     /**
334 339
      * @param array $aConfig
335 340
      *
336
-     * @return array
341
+     * @return string
337 342
      */
338 343
     private function buildHeaderReadme($aConfig)
339 344
     {
@@ -357,7 +362,7 @@  discard block
 block discarded – undo
357 362
     }
358 363
 
359 364
     /**
360
-     * @param $sReadMeFilePath
365
+     * @param string $sReadMeFilePath
361 366
      * @param $t_sExtension
362 367
      *
363 368
      * @return string
@@ -418,7 +423,7 @@  discard block
 block discarded – undo
418 423
     /**
419 424
      * @param array $p_aConfig
420 425
      *
421
-     * @return array
426
+     * @return string[]
422 427
      */
423 428
     private function buildJavascriptAssets($p_aConfig)
424 429
     {
Please login to merge, or discard this patch.
thumbnail.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -127,6 +127,9 @@  discard block
 block discarded – undo
127 127
  * Standard error (stderr) please visit:
128 128
  *      http://en.wikipedia.org/wiki/Standard_streams
129 129
  */
130
+/**
131
+ * @param string $p_sCommand
132
+ */
130 133
 function executeCommand($p_sCommand, $p_sInput='') {
131 134
 
132 135
     $rProcess = proc_open(
@@ -178,6 +181,11 @@  discard block
 block discarded – undo
178 181
     imagedestroy($rImage);
179 182
 }
180 183
 
184
+/**
185
+ * @param string $p_sText
186
+ * @param integer $p_dSize
187
+ * @param string $p_sRgba
188
+ */
181 189
 function drawText($p_sText, $p_dSize, $p_sRgba, $p_iAngle=0, $p_sFontFile=null) {
182 190
     $text  = (string) $p_sText;
183 191
     $size  = (float)  $p_dSize;
Please login to merge, or discard this patch.