Skip to content

Commit 453928d

Browse files
LTSCommerceclaude
andcommitted
fix(managed-source): drop trailing period so @internal docblock is cs-fixer-stable
The round-2 @internal block in FactorySealedBy emitted '...on that basis.' with a trailing period that PHP-CS-Fixer strips, so the generator output and the cs-fixed output never agreed — every bin/qa run after the first failed the managed-source drift check. Emit the line without the period (matching what cs-fixer wants) so generate -> cs-fixer is idempotent. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 22aa870 commit 453928d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ManagedSource/ManagedSourceGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ private function renderFactorySealedBy(string $namespace): string
178178
*
179179
* @internal this managed artefact is not part of your package's public
180180
* API surface, so a type:library consumer's API-surface
181-
* classification rule passes over it on that basis.
181+
* classification rule passes over it on that basis
182182
*/
183183
#[Attribute(Attribute::TARGET_CLASS)]
184184
final readonly class FactorySealedBy

0 commit comments

Comments
 (0)