/** * PHP Legacy Refactor AI - Main Export * Re-exports all modules for programmatic usage */ export { scanPhpFiles, extractClassInfo } from './scanner.js'; export type { PhpFile, ClassInfo, MethodInfo, PropertyInfo, ScanOptions } from './scanner.js'; export { OllamaClient } from './ollama.js'; export type { OllamaClientOptions } from './ollama.js'; export { analyzeCommand } from './commands/analyze.js'; export { testCommand } from './commands/test.js'; export { docsCommand } from './commands/docs.js';