You are here

public function CounterTest::providerTestDecrementNotFloatOrInt in Purge 8.3

Provides test data for testDecrementNotFloatOrInt().

File

tests/src/Unit/Counter/CounterTest.php, line 210

Class

CounterTest
@coversDefaultClass \Drupal\purge\Counter\Counter

Namespace

Drupal\Tests\purge\Unit\Counter

Code

public function providerTestDecrementNotFloatOrInt() : array {
  return [
    [
      FALSE,
    ],
    [
      "0",
    ],
    [
      NULL,
    ],
  ];
}