diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-08-04 05:39:41 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-08-04 05:56:52 +0900 |
| commit | b45e04865df335a9aedbf2bdd5b17353c1598fa5 (patch) | |
| tree | 076c6eeb6aa06cac8f6b056a86d4f7cb2880a1f0 /crates/shirabe/src/console | |
| parent | 2cb2f128cffb4e664145c9a8a392b9666d014459 (diff) | |
| download | php-shirabe-b45e04865df335a9aedbf2bdd5b17353c1598fa5.tar.gz php-shirabe-b45e04865df335a9aedbf2bdd5b17353c1598fa5.tar.zst php-shirabe-b45e04865df335a9aedbf2bdd5b17353c1598fa5.zip | |
docs: state code facts instead of porting-phase progress
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/console')
| -rw-r--r-- | crates/shirabe/src/console/application.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/crates/shirabe/src/console/application.rs b/crates/shirabe/src/console/application.rs index af18cd04..e6cfad35 100644 --- a/crates/shirabe/src/console/application.rs +++ b/crates/shirabe/src/console/application.rs @@ -2391,10 +2391,10 @@ impl ApplicationHandle { // TODO(plugin): `new $dummy($script)` instantiates the // user's PHP command class in-process and registers the // live object on this Application; hosting a PHP-owned - // command here needs the PHP-side Application / command - // proxying of the plugin milestones. The shim - // class_exists above never recognizes user classes, so - // this arm is currently unreachable. + // command here needs a PHP-side Symfony Application and + // command proxying, neither of which exists yet. The + // shim class_exists above never recognizes user + // classes, so this arm is currently unreachable. let _ = shirabe_php_shim::instantiate_class( &dummy_str, vec![PhpMixed::String(script.clone())], @@ -2850,7 +2850,7 @@ impl ApplicationHandle { if Terminal::has_stty_available() { // TODO(phase-c): registers SIGINT/SIGTERM handlers that restore the stty mode via // shell_exec('stty ...'). pcntl signal handlers have no faithful Rust - // equivalent in Phase A. + // equivalent yet. let _stty_mode = shirabe_php_shim::shell_exec("stty -g"); for _signal in [shirabe_php_shim::SIGINT, shirabe_php_shim::SIGTERM] { todo!("register signal handler to restore stty mode"); |
