travis
authorgggeek <giunta.gaetano@gmail.com>
Sun, 6 Dec 2020 15:40:35 +0000 (15:40 +0000)
committergggeek <giunta.gaetano@gmail.com>
Sun, 6 Dec 2020 15:40:35 +0000 (15:40 +0000)
composer.json
tests/3LocalhostTest.php
tests/LocalFileTestCase.php
tests/PolyfillTestCase8.php

index f5db6fd..a3691aa 100644 (file)
@@ -9,7 +9,7 @@
         "ext-xml": "*"
     },
     "require-dev": {
-        "phpunit/phpunit": "^4.0 || ^5.0 || ^8.5.12",
+        "phpunit/phpunit": "^5.0 || ^8.5.12",
         "phpunit/phpunit-selenium": "*",
         "yoast/phpunit-polyfills": "*",
         "ext-curl": "*",
index 8d35be6..85934d4 100644 (file)
@@ -55,7 +55,7 @@ class LocalhostTest extends PhpXmlRpc_PolyfillTestCase
      * @return TestResult
      * @throws Exception
      */
-    public function _run(TestResult $result = NULL)
+    public function _run($result = NULL)
     {
         $this->testId = get_class($this) . '__' . $this->getName();
 
index 21fda68..255a87b 100644 (file)
@@ -17,7 +17,7 @@ abstract class PhpXmlRpc_LocalFileTestCase extends PhpXmlRpc_PolyfillTestCase
     protected $collectCodeCoverageInformation;
     protected $coverageScriptUrl;
 
-    public function _run(TestResult $result = NULL)
+    public function _run($result = NULL)
     {
         $this->testId = get_class($this) . '__' . $this->getName();
 
index 55870ec..5c8711a 100644 (file)
@@ -5,7 +5,7 @@ use Yoast\PHPUnitPolyfills\TestCases\TestCase;
 
 abstract class PhpXmlRpc_PolyfillTestCase extends TestCase
 {
-    public function _run(TestResult $result = null) {
+    public function _run($result = null) {
         return parent::run($result);
     }