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