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\CounterCode
public function providerTestSetNotFloatOrInt() : array {
return [
[
FALSE,
],
[
"0",
],
[
NULL,
],
];
}