From 90654e39e76fae5048f2fc6d6eaccd5f5aa3b6ff Mon Sep 17 00:00:00 2001 From: Andre Michels Date: Thu, 20 May 2021 10:54:18 +0200 Subject: [PATCH 1/3] Recaclulate something --- src/AppConfiguration.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/AppConfiguration.php b/src/AppConfiguration.php index 5c4620f..12a7035 100644 --- a/src/AppConfiguration.php +++ b/src/AppConfiguration.php @@ -15,5 +15,13 @@ class AppConfiguration { public function printConfiguration() { print_r($this->configuration); + + $this->recalculateTestCoverage(); + } + + public function recalculateTestCoverage() { + $uniqid = uniqid(); + $uniqid = md5($uniqid); + return $uniqid; } } \ No newline at end of file -- GitLab From ab2007a24c4c6ca19252384744fdd2823ee89823 Mon Sep 17 00:00:00 2001 From: Andre Michels Date: Thu, 20 May 2021 10:54:44 +0200 Subject: [PATCH 2/3] Recaclulate something --- index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 509da81..206c378 100644 --- a/index.html +++ b/index.html @@ -1 +1,5 @@ -

Meine schöne App

\ No newline at end of file +

Meine schöne App

+ +

+ Mit neuem Feature +

\ No newline at end of file -- GitLab From 9d7729df9713cdfcb992fd5469f090d2f0bbb304 Mon Sep 17 00:00:00 2001 From: Andre Michels Date: Thu, 20 May 2021 11:15:51 +0200 Subject: [PATCH 3/3] Changes for coverage --- src/AppConfiguration.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/AppConfiguration.php b/src/AppConfiguration.php index 12a7035..2ef37a1 100644 --- a/src/AppConfiguration.php +++ b/src/AppConfiguration.php @@ -16,7 +16,9 @@ class AppConfiguration { public function printConfiguration() { print_r($this->configuration); - $this->recalculateTestCoverage(); + if (1 == 0) { + $this->recalculateTestCoverage(); + } } public function recalculateTestCoverage() { -- GitLab