fix: remove glob path from docblock that broke PHP tokenizer
Some checks failed
CI / PHP 8.3 (push) Failing after 2s
CI / PHP 8.4 (push) Failing after 2s

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 <noreply@anthropic.com>
This commit is contained in:
Snider 2026-03-03 10:49:30 +00:00
parent 31e2aae980
commit 20a0b584ae

View file

@ -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
{