Completed
Pull Request — master (#6927)
by Damian
09:12
created
tests/php/Forms/ValidatorTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * Common method for setting up form, since that will always be a dependency for the validator.
21 21
      *
22
-     * @param    array $fieldNames
22
+     * @param    string[] $fieldNames
23 23
      * @return    Form
24 24
      */
25 25
     protected function getForm(array $fieldNames = array())
Please login to merge, or discard this patch.
src/Core/ClassInfo.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -310,6 +310,9 @@
 block discarded – undo
310 310
 
311 311
     private static $method_from_cache = array();
312 312
 
313
+    /**
314
+     * @param string $method
315
+     */
313 316
     public static function has_method_from($class, $method, $compclass)
314 317
     {
315 318
         $lClass = strtolower($class);
Please login to merge, or discard this patch.
src/ORM/DataQuery.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
     /**
191 191
      * Ensure that the query is ready to execute.
192 192
      *
193
-     * @param array|null $queriedColumns Any columns to filter the query by
193
+     * @param string[] $queriedColumns Any columns to filter the query by
194 194
      * @return SQLSelect The finalised sql query
195 195
      */
196 196
     public function getFinalisedQuery($queriedColumns = null)
Please login to merge, or discard this patch.