Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 41 additions & 41 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/Storage/Operation.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

namespace Rancoud\Prometheus\Storage;

/** Used by Gauge. */
/**
* Used by Gauge.
*/
enum Operation
{
case Set;
Expand Down
4 changes: 3 additions & 1 deletion tests/AbstractCounter.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
use Rancoud\Prometheus\Exception\DescriptorException;
use Rancoud\Prometheus\Storage\Adapter;

/** @internal */
/**
* @internal
*/
abstract class AbstractCounter extends TestCase
{
protected Adapter $storage;
Expand Down
4 changes: 3 additions & 1 deletion tests/AbstractGauge.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
use Rancoud\Prometheus\Gauge;
use Rancoud\Prometheus\Storage\Adapter;

/** @internal */
/**
* @internal
*/
abstract class AbstractGauge extends TestCase
{
protected Adapter $storage;
Expand Down
4 changes: 3 additions & 1 deletion tests/AbstractHistogram.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
use Rancoud\Prometheus\Histogram;
use Rancoud\Prometheus\Storage\Adapter;

/** @internal */
/**
* @internal
*/
abstract class AbstractHistogram extends TestCase
{
protected Adapter $storage;
Expand Down
4 changes: 3 additions & 1 deletion tests/AbstractRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
use Rancoud\Prometheus\Storage\Adapter;
use Rancoud\Prometheus\Summary;

/** @internal */
/**
* @internal
*/
abstract class AbstractRegistry extends TestCase
{
protected Adapter $storage;
Expand Down
4 changes: 3 additions & 1 deletion tests/AbstractSummary.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
use Rancoud\Prometheus\Storage\Adapter;
use Rancoud\Prometheus\Summary;

/** @internal */
/**
* @internal
*/
abstract class AbstractSummary extends TestCase
{
protected Adapter $storage;
Expand Down
4 changes: 3 additions & 1 deletion tests/DescriptorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
use Rancoud\Prometheus\Descriptor;
use Rancoud\Prometheus\Exception\DescriptorException;

/** @internal */
/**
* @internal
*/
class DescriptorTest extends TestCase
{
// region Constructor
Expand Down
4 changes: 3 additions & 1 deletion tests/InMemory/CounterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use Rancoud\Prometheus\Storage\InMemory;
use tests\AbstractCounter;

/** @internal */
/**
* @internal
*/
class CounterTest extends AbstractCounter
{
protected function setUp(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/InMemory/GaugeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use Rancoud\Prometheus\Storage\InMemory;
use tests\AbstractGauge;

/** @internal */
/**
* @internal
*/
class GaugeTest extends AbstractGauge
{
protected function setUp(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/InMemory/HistogramTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use Rancoud\Prometheus\Storage\InMemory;
use tests\AbstractHistogram;

/** @internal */
/**
* @internal
*/
class HistogramTest extends AbstractHistogram
{
protected function setUp(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/InMemory/InMemoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
use Rancoud\Prometheus\Storage\InMemory;
use Rancoud\Prometheus\Storage\Operation;

/** @internal */
/**
* @internal
*/
class InMemoryTest extends TestCase
{
/**
Expand Down
4 changes: 3 additions & 1 deletion tests/InMemory/RegistryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use Rancoud\Prometheus\Storage\InMemory;
use tests\AbstractRegistry;

/** @internal */
/**
* @internal
*/
class RegistryTest extends AbstractRegistry
{
protected function setUp(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/InMemory/SummaryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use Rancoud\Prometheus\Storage\InMemory;
use tests\AbstractSummary;

/** @internal */
/**
* @internal
*/
class SummaryTest extends AbstractSummary
{
protected function setUp(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/SQLite/CounterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
use Rancoud\Prometheus\Storage\SQLite;
use tests\AbstractCounter;

/** @internal */
/**
* @internal
*/
class CounterTest extends AbstractCounter
{
/**
Expand Down
4 changes: 3 additions & 1 deletion tests/SQLite/GaugeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
use Rancoud\Prometheus\Storage\SQLite;
use tests\AbstractGauge;

/** @internal */
/**
* @internal
*/
class GaugeTest extends AbstractGauge
{
/**
Expand Down
Loading
Loading