Completed
Pull Request — master (#6829)
by Sam
19:37 queued 04:58
created
tests/php/Core/ObjectTest/Extending.php 1 patch
Doc Comments   +17 added lines patch added patch discarded remove patch
@@ -12,11 +12,22 @@  discard block
 block discarded – undo
12 12
         Extending_Extension::class,
13 13
     );
14 14
 
15
+    /**
16
+     * @param integer $first
17
+     * @param integer $second
18
+     * @param integer $third
19
+     */
15 20
     public function getResults(&$first, &$second, &$third)
16 21
     {
17 22
         // Before extending should be invoked second
18 23
         $this->beforeExtending(
19 24
             'updateResult',
25
+
26
+            /**
27
+             * @param integer $first
28
+             * @param integer $second
29
+             * @param integer $third
30
+             */
20 31
             function (&$first, &$second, &$third) {
21 32
                 if ($first === 1 && $second === 2 && $third === 3) {
22 33
                     $first = 11;
@@ -31,6 +42,12 @@  discard block
 block discarded – undo
31 42
         // After extending should be invoked fourth
32 43
         $this->afterExtending(
33 44
             'updateResult',
45
+
46
+            /**
47
+             * @param integer $first
48
+             * @param integer $second
49
+             * @param integer $third
50
+             */
34 51
             function (&$first, &$second, &$third) {
35 52
                 if ($first === 21 && $second === 22 && $third = 23) {
36 53
                     $first = 31;
Please login to merge, or discard this patch.
php/Core/Startup/ErrorControlChainTest/ErrorControlChainTest_Chain.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     /**
32 32
      * Modify method visibility to public for testing
33 33
      *
34
-     * @param mixed $errors
34
+     * @param string $errors
35 35
      */
36 36
     public function setDisplayErrors($errors)
37 37
     {
@@ -40,6 +40,10 @@  discard block
 block discarded – undo
40 40
     }
41 41
 
42 42
     // Change function visibility to be testable directly
43
+
44
+    /**
45
+     * @param string $memstring
46
+     */
43 47
     public function translateMemstring($memstring)
44 48
     {
45 49
         return parent::translateMemstring($memstring);
Please login to merge, or discard this patch.
tests/php/Dev/CsvBulkLoaderTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -271,6 +271,9 @@
 block discarded – undo
271 271
     }
272 272
 
273 273
 
274
+    /**
275
+     * @param resource $file
276
+     */
274 277
     protected function getLineCount(&$file)
275 278
     {
276 279
         $i = 0;
Please login to merge, or discard this patch.
tests/php/Forms/DropdownFieldTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -399,7 +399,7 @@
 block discarded – undo
399 399
      * string of HTML.
400 400
      *
401 401
      * @param  string $html HTML to scan for elements
402
-     * @return SimpleXMLElement
402
+     * @return \SimpleXMLElement
403 403
      */
404 404
     public function findOptionElements($html)
405 405
     {
Please login to merge, or discard this patch.
php/Forms/GridField/GridField_URLHandlerTest/TestComponent_ItemRequest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 
21 21
     protected $id;
22 22
 
23
+    /**
24
+     * @param string $link
25
+     */
23 26
     public function __construct($gridField, $id, $link)
24 27
     {
25 28
         $this->gridField = $gridField;
Please login to merge, or discard this patch.
tests/php/Security/GroupTest/MemberForm.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -9,6 +9,10 @@
 block discarded – undo
9 9
 class MemberForm extends Form
10 10
 {
11 11
 
12
+    /**
13
+     * @param \SilverStripe\Control\Controller $controller
14
+     * @param string $name
15
+     */
12 16
     public function __construct($controller, $name)
13 17
     {
14 18
         $fields = TestMember::singleton()->getCMSFields();
Please login to merge, or discard this patch.
tests/php/Security/SecurityTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -676,6 +676,8 @@  discard block
 block discarded – undo
676 676
     /**
677 677
      * Execute a log-in form using Director::test().
678 678
      * Helper method for the tests above
679
+     * @param string $email
680
+     * @param string $password
679 681
      */
680 682
     public function doTestLoginForm($email, $password, $backURL = 'test/link')
681 683
     {
@@ -697,6 +699,8 @@  discard block
 block discarded – undo
697 699
 
698 700
     /**
699 701
      * Helper method to execute a change password form
702
+     * @param string $oldPassword
703
+     * @param string $newPassword
700 704
      */
701 705
     public function doTestChangepasswordForm($oldPassword, $newPassword)
702 706
     {
Please login to merge, or discard this patch.
tests/php/View/SSViewerCacheBlockTest/VersionedModel.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
         Versioned::class
17 17
     );
18 18
 
19
+    /**
20
+     * @param string $entropy
21
+     */
19 22
     public function setEntropy($entropy)
20 23
     {
21 24
         $this->entropy = $entropy;
Please login to merge, or discard this patch.
tests/php/View/SSViewerTest.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -173,6 +173,10 @@  discard block
 block discarded – undo
173 173
         );
174 174
     }
175 175
 
176
+    /**
177
+     * @param \SilverStripe\ORM\FieldType\DBHTMLText $result
178
+     * @param string[] $expected
179
+     */
176 180
     private function assertExpectedStrings($result, $expected)
177 181
     {
178 182
         foreach ($expected as $expectedStr) {
@@ -1088,6 +1092,10 @@  discard block
 block discarded – undo
1088 1092
         $this->assertEquals('A A1 A1 i A1 ii A2 A3', $rationalisedResult);
1089 1093
     }
1090 1094
 
1095
+    /**
1096
+     * @param string $a
1097
+     * @param string $b
1098
+     */
1091 1099
     public function assertEqualIgnoringWhitespace($a, $b, $message = '')
1092 1100
     {
1093 1101
         $this->assertEquals(preg_replace('/\s+/', '', $a), preg_replace('/\s+/', '', $b), $message);
@@ -1819,6 +1827,11 @@  discard block
 block discarded – undo
1819 1827
             $this->_renderWithSourceFileComments('SSViewerTestComments/'.$template['name'], $template['expected']);
1820 1828
         }
1821 1829
     }
1830
+
1831
+    /**
1832
+     * @param string $name
1833
+     * @param string $expected
1834
+     */
1822 1835
     private function _renderWithSourceFileComments($name, $expected)
1823 1836
     {
1824 1837
         $viewer = new SSViewer(array($name));
Please login to merge, or discard this patch.