public function LoggerChannelPartTest::providerTestDebug in Purge 8.3
Provides test data for testDebug().
File
- tests/
src/ Unit/ Logger/ LoggerChannelPartTest.php, line 235
Class
- LoggerChannelPartTest
- @coversDefaultClass \Drupal\purge\Logger\LoggerChannelPart
Namespace
Drupal\Tests\purge\Unit\LoggerCode
public function providerTestDebug() : array {
return [
[
'good',
[
RfcLogLevel::DEBUG,
],
'bazinga!',
],
[
'bad',
[
-1,
],
NULL,
],
];
}