fix(ccli): remove empty if block in CcliPasteParser constructor

This commit is contained in:
Thorsten Bus 2026-05-11 10:47:10 +02:00
parent 73a9c18a10
commit 8a2e250f14

View file

@ -14,8 +14,6 @@ public function __construct(
private readonly ?Closure $sectionDetector = null,
private readonly ?Closure $metadataDetector = null,
) {
if ($sectionDetector !== null || $metadataDetector !== null) {
}
}
public function parse(string $rawText): ParsedCcliSong