Skip to content

Commit a860bd4

Browse files
authored
remove blank lines after class opening (#1468)
add the php-cs-fixer no_blank_lines_after_class_opening rule and apply to codebase
1 parent 04c85a1 commit a860bd4

13 files changed

+0
-13
lines changed

Instrumentation/AutoInstrumentation/ConfigurationRegistry.php

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

99
final class ConfigurationRegistry implements ConfigProperties
1010
{
11-
1211
private array $configurations = [];
1312

1413
public function add(InstrumentationConfiguration $configuration): self

Instrumentation/AutoInstrumentation/InstrumentationConfiguration.php

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

77
interface InstrumentationConfiguration
88
{
9-
109
}

Metrics/CounterInterface.php

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

99
interface CounterInterface extends SynchronousInstrument
1010
{
11-
1211
/**
1312
* @param float|int $amount non-negative amount to increment by
1413
* @param iterable<non-empty-string, string|bool|float|int|array|null> $attributes

Metrics/GaugeInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*/
1616
interface GaugeInterface extends SynchronousInstrument
1717
{
18-
1918
/**
2019
* @param float|int $amount current absolute value
2120
* @param iterable<non-empty-string, string|bool|float|int|array|null> $attributes

Metrics/HistogramInterface.php

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

99
interface HistogramInterface extends SynchronousInstrument
1010
{
11-
1211
/**
1312
* @param float|int $amount non-negative amount to record
1413
* @param iterable<non-empty-string, string|bool|float|int|array|null> $attributes

Metrics/MeterInterface.php

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

77
interface MeterInterface
88
{
9-
109
/**
1110
* Reports measurements for multiple asynchronous instrument from a single callback.
1211
*

Metrics/MeterProviderInterface.php

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

77
interface MeterProviderInterface
88
{
9-
109
/**
1110
* Returns a `Meter` for the given instrumentation scope.
1211
*

Metrics/ObservableCallbackInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
*/
4949
interface ObservableCallbackInterface
5050
{
51-
5251
/**
5352
* Detaches the associated callback from the instrument.
5453
*/

Metrics/ObservableCounterInterface.php

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

77
interface ObservableCounterInterface extends AsynchronousInstrument
88
{
9-
109
/**
1110
* @param callable(ObserverInterface): void $callback function responsible for
1211
* reporting the measurements (as absolute values)

Metrics/ObservableGaugeInterface.php

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

77
interface ObservableGaugeInterface extends AsynchronousInstrument
88
{
9-
109
/**
1110
* @param callable(ObserverInterface): void $callback function responsible for
1211
* reporting the measurements

0 commit comments

Comments
 (0)