Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias <ilovemilk@wusa.io>2020-03-28 12:46:45 +0300
committerMatthias <ilovemilk@wusa.io>2020-03-28 12:46:45 +0300
commit7bb713e57667b8704d8f5dde4cfcd7b125b7cfb9 (patch)
tree7a697d963a3f632b33744d219ab88699ba91eb07
parentc0d0c2aa5f9c2373baf307caae4af7e52db9b08e (diff)
change setUp method signature to match parent
-rw-r--r--tests/Unit/Analyzer/EntropyAnalyzerTest.php2
-rw-r--r--tests/Unit/Analyzer/EntropyResultTest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/Analyzer/EntropyAnalyzerTest.php b/tests/Unit/Analyzer/EntropyAnalyzerTest.php
index b78c164..87e9f3c 100644
--- a/tests/Unit/Analyzer/EntropyAnalyzerTest.php
+++ b/tests/Unit/Analyzer/EntropyAnalyzerTest.php
@@ -44,7 +44,7 @@ class EntropyAnalyzerTest extends TestCase
/** @var string */
protected $userId = 'john';
- public function setUp()
+ public function setUp(): void
{
parent::setUp();
diff --git a/tests/Unit/Analyzer/EntropyResultTest.php b/tests/Unit/Analyzer/EntropyResultTest.php
index 658647a..9a15ae9 100644
--- a/tests/Unit/Analyzer/EntropyResultTest.php
+++ b/tests/Unit/Analyzer/EntropyResultTest.php
@@ -29,7 +29,7 @@ class EntropyResultTest extends TestCase
/** @var EntropyResult */
protected $entropyResult;
- public function setUp()
+ public function setUp(): void
{
parent::setUp();