Skip to content

Commit 573261a

Browse files
committed
Fix style tests
Signed-off-by: Lukas Kämmerling <lukas.kaemmerling@hetzner-cloud.de>
1 parent 5f67192 commit 573261a

14 files changed

+0
-14
lines changed

src/Prometheus/Exception/MetricNotFoundException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@
99
*/
1010
class MetricNotFoundException extends Exception
1111
{
12-
1312
}

src/Prometheus/Exception/MetricsRegistrationException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@
99
*/
1010
class MetricsRegistrationException extends Exception
1111
{
12-
1312
}

src/Prometheus/Exception/StorageException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@
99
*/
1010
class StorageException extends Exception
1111
{
12-
1312
}

src/Prometheus/Math.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
class Math
88
{
9-
109
/**
1110
* taken from https://www.php.net/manual/fr/function.stats-stat-percentile.php#79752
1211
* @param float[] $arr must be sorted

src/Prometheus/Storage/InMemory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
class InMemory implements Adapter
1212
{
13-
1413
/**
1514
* @var mixed[]
1615
*/

tests/Test/Prometheus/APC/CollectorRegistryTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
class CollectorRegistryTest extends AbstractCollectorRegistryTest
1414
{
15-
1615
public function configureAdapter(): void
1716
{
1817
$this->adapter = new APC();

tests/Test/Prometheus/InMemory/CounterTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
class CounterTest extends AbstractCounterTest
1414
{
15-
1615
public function configureAdapter(): void
1716
{
1817
$this->adapter = new InMemory();

tests/Test/Prometheus/InMemory/GaugeTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
class GaugeTest extends AbstractGaugeTest
1414
{
15-
1615
public function configureAdapter(): void
1716
{
1817
$this->adapter = new InMemory();

tests/Test/Prometheus/InMemory/HistogramTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
class HistogramTest extends AbstractHistogramTest
1414
{
15-
1615
public function configureAdapter(): void
1716
{
1817
$this->adapter = new InMemory();

tests/Test/Prometheus/InMemory/SummaryTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
class SummaryTest extends AbstractSummaryTest
1414
{
15-
1615
public function configureAdapter(): void
1716
{
1817
$this->adapter = new InMemory();

0 commit comments

Comments
 (0)