Files
ik-codex/test/src/Log/TestNeverDetectableLog.php
indifferentketchup 66a2fcc5f3 Rename namespace Aternos\Codex to IndifferentKetchup\Codex
Bulk substitution across all PHP files in src/ and test/. Covers
namespace declarations, use statements, fully-qualified class
references, and @package PHPDoc tags. No logic changes.
2026-04-30 15:13:52 +00:00

24 lines
643 B
PHP

<?php
namespace IndifferentKetchup\Codex\Test\Src\Log;
use IndifferentKetchup\Codex\Detective\DetectorInterface;
use IndifferentKetchup\Codex\Detective\SinglePatternDetector;
use IndifferentKetchup\Codex\Log\DetectableLogInterface;
use IndifferentKetchup\Codex\Log\Log;
/**
* Class TestNeverDetectableLog
*/
class TestNeverDetectableLog extends Log implements DetectableLogInterface
{
/**
* Get an array of detectors matching DetectorInterface
*
* @return DetectorInterface[]
*/
public static function getDetectors(): array
{
return [(new SinglePatternDetector())->setPattern('/missing/')];
}
}