From 9426b4c3fcd97a9ee4f920405e90b07a2a39eb7c Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Fri, 21 Aug 2026 18:21:36 +0400 Subject: [PATCH 1/3] Demo: swap class final/abstract flags to exercise the corpus diff Throwaway change. Do not merge. --- lib/runner.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/runner.php b/lib/runner.php index 70e77d9..6c93f88 100644 --- a/lib/runner.php +++ b/lib/runner.php @@ -130,8 +130,8 @@ function parse_files( $files, $root ) { 'namespace' => $class->getNamespace(), 'line' => $class->getLineNumber(), 'end_line' => $class->getNode()->getAttribute( 'endLine' ), - 'final' => $class->isFinal(), - 'abstract' => $class->isAbstract(), + 'final' => $class->isAbstract(), + 'abstract' => $class->isFinal(), 'extends' => $class->getParentClass(), 'implements' => $class->getInterfaces(), 'properties' => export_properties( $class->getProperties(), $class_setup_blueprints, $path ), From 9755aaa872c7ccda58f9953eed8be06765f493a7 Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Fri, 21 Aug 2026 18:34:28 +0400 Subject: [PATCH 2/3] Empty commit to exercise the comment update From b0e478981215ed1a7efbde8fecdca100f6eb8140 Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Fri, 21 Aug 2026 19:08:46 +0400 Subject: [PATCH 3/3] Demo: also swap method final/abstract so the diff exceeds the comment budget --- lib/runner.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/runner.php b/lib/runner.php index 6c93f88..deda2f3 100644 --- a/lib/runner.php +++ b/lib/runner.php @@ -749,8 +749,8 @@ function export_methods( array $methods, array $inherited_setup_blueprints = arr 'aliases' => $method->getNamespaceAliases(), 'line' => $method->getLineNumber(), 'end_line' => $method->getNode()->getAttribute( 'endLine' ), - 'final' => $method->isFinal(), - 'abstract' => $method->isAbstract(), + 'final' => $method->isAbstract(), + 'abstract' => $method->isFinal(), 'static' => $method->isStatic(), 'visibility' => $method->getVisibility(), 'arguments' => export_arguments( $method->getArguments() ),