| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-07-24 | refactor(symfony-style): remove unused StyleInterface impl on OutputStyle | nsfisis | |
| Real symfony/console OutputStyle is abstract and never defines these methods itself (title/section/table/ask/... stay abstract, deferred to SymfonyStyle). The Rust impl block was a porting artifact never invoked anywhere: OutputStyle is only used as SymfonyStyle's concrete `inner` field, and every StyleInterface call site goes through SymfonyStyle's own full implementation. new_line, which SymfonyStyle::new_line does delegate to, moves to an inherent method to keep that call working. | |||
| 2026-07-11 | chore: use fully-qualified name for Rc/RefCell | nsfisis | |
| 2026-06-26 | feat(output-style): implement is_console_output_interface via AsAny downcast | nsfisis | |
| Matches the SymfonyStyle fix: ConsoleOutput is the sole ConsoleOutputInterface implementor, so the instanceof check reduces to an AsAny downcast. get_error_output now resolves correctly for non-console outputs instead of hitting todo!(). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> | |||
| 2026-06-14 | chore: add "ref" comments to file header | nsfisis | |
| 2026-06-12 | feat(symfony-console): port Symfony Console and make the workspace compile | nsfisis | |
| Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> | |||
