From 20a0b584aeadb56e6a4bb62e0cb1fb4f2df8bf6f Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 3 Mar 2026 10:49:30 +0000 Subject: [PATCH] fix: remove glob path from docblock that broke PHP tokenizer The `*/` in `projects/*/memory/` was closing the docblock comment early, causing PHP to see `for` as a keyword on the same line. Co-Authored-By: Claude Opus 4.6 --- Console/Commands/BrainSeedMemoryCommand.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Console/Commands/BrainSeedMemoryCommand.php b/Console/Commands/BrainSeedMemoryCommand.php index c71b9e5..a07dfa5 100644 --- a/Console/Commands/BrainSeedMemoryCommand.php +++ b/Console/Commands/BrainSeedMemoryCommand.php @@ -11,9 +11,9 @@ use Illuminate\Console\Command; * Import MEMORY.md files from Claude Code project memory directories * into the OpenBrain knowledge store. * - * Scans ~/.claude/projects/*/memory/ for MEMORY.md and topic-specific - * markdown files, parses them into individual memories, and stores - * each via BrainService::remember(). + * Scans Claude Code project memory directories (~/.claude/projects) + * for MEMORY.md and topic-specific markdown files, parses them into + * individual memories, and stores each via BrainService::remember(). */ class BrainSeedMemoryCommand extends Command {