Completed
Push — master ( f06127...16abc2 )
by Nicolaas
01:22
created
code/api/API.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@
 block discarded – undo
50 50
     }
51 51
 
52 52
 
53
+    /**
54
+     * @param string $name
55
+     */
53 56
     protected function retrieveDBFields($name)
54 57
     {
55 58
         $data = $this->_data;
Please login to merge, or discard this patch.
code/control/BuildController.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -84,6 +84,9 @@  discard block
 block discarded – undo
84 84
         }
85 85
     }
86 86
 
87
+    /**
88
+     * @param string $method
89
+     */
87 90
     protected function turnStaticsIntoSessionData($method, $className)
88 91
     {
89 92
         $data = [];
@@ -245,6 +248,10 @@  discard block
 block discarded – undo
245 248
     }
246 249
 
247 250
 
251
+    /**
252
+     * @param string $formName
253
+     * @param string $actionTitle
254
+     */
248 255
     protected function createForm($formName, $actionTitle)
249 256
     {
250 257
         if ($formName === 'PrimaryForm') {
@@ -499,6 +506,9 @@  discard block
 block discarded – undo
499 506
         return [];
500 507
     }
501 508
 
509
+    /**
510
+     * @param string $name
511
+     */
502 512
     protected function saveData($name, $data)
503 513
     {
504 514
         unset($data['url']);
Please login to merge, or discard this patch.