Completed
Push — master ( 3eedec...5a0fea )
by Daniel
04:27
created
source/CommonBasic.php 1 patch
Doc Comments   +8 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@  discard block
 block discarded – undo
63 63
         return $aDetails;
64 64
     }
65 65
 
66
+    /**
67
+     * @param string $fileGiven
68
+     */
66 69
     protected function getFileDetailsRawStatistic(\SplFileInfo $info, $fileGiven)
67 70
     {
68 71
         return [
@@ -81,6 +84,9 @@  discard block
 block discarded – undo
81 84
         ];
82 85
     }
83 86
 
87
+    /**
88
+     * @param integer $timeAsPhpNumber
89
+     */
84 90
     private function getFileTimes($timeAsPhpNumber)
85 91
     {
86 92
         return [
@@ -94,7 +100,7 @@  discard block
 block discarded – undo
94 100
      *
95 101
      * @param type $sourcePath
96 102
      * @param type $targetPath
97
-     * @return type
103
+     * @return string
98 104
      */
99 105
     protected function moveFilesIntoTargetFolder($sourcePath, $targetPath)
100 106
     {
@@ -210,7 +216,7 @@  discard block
 block discarded – undo
210 216
     /**
211 217
      * Provides a list of all known JSON errors and their description
212 218
      *
213
-     * @return type
219
+     * @return null|string
214 220
      */
215 221
     protected function setJsonErrorInPlainEnglish()
216 222
     {
Please login to merge, or discard this patch.
source/CommonViews.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
      * @param string $tableSource
111 111
      * @param array $details
112 112
      * @param array $features
113
-     * @return string|array
113
+     * @return null|string
114 114
      */
115 115
     private function setNeededField($tableSource, $details, $features)
116 116
     {
@@ -143,6 +143,10 @@  discard block
 block discarded – undo
143 143
         return $this->setNeededFieldKnown($tblName, $dtls, $features);
144 144
     }
145 145
 
146
+    /**
147
+     * @param string $tableSource
148
+     * @param string $fieldLabel
149
+     */
146 150
     private function setNeededFieldFinal($tableSource, $details, $features, $fieldLabel)
147 151
     {
148 152
         $sReturn = $this->setField($tableSource, $details, $features, $fieldLabel);
@@ -169,6 +173,9 @@  discard block
 block discarded – undo
169 173
         ];
170 174
     }
171 175
 
176
+    /**
177
+     * @param string $sReturn
178
+     */
172 179
     private function setViewDeletePackedFinal($sReturn)
173 180
     {
174 181
         $finalJavascript = $this->setJavascriptContent(implode('', [
Please login to merge, or discard this patch.