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 <noreply@anthropic.com>
This commit is contained in:
parent
31e2aae980
commit
20a0b584ae
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Reference in a new issue