You are here

public function CounterTest::providerTestSetNotFloatOrInt in Purge 8.3

Provides test data for testSetNotFloatOrInt().

File

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

Class

CounterTest
@coversDefaultClass \Drupal\purge\Counter\Counter

Namespace

Drupal\Tests\purge\Unit\Counter

Code

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