diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-07-07 00:01:16 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-07-07 00:05:02 +0900 |
| commit | 058b85b641f806702031dca60d4b84d90aaef452 (patch) | |
| tree | 52b49c52cfd88065bdfb6e94f5f78769d4aae389 /crates/shirabe/src | |
| parent | 6ab39f42fc5bf05b29f24e315bf3088513b0f626 (diff) | |
| download | php-shirabe-058b85b641f806702031dca60d4b84d90aaef452.tar.gz php-shirabe-058b85b641f806702031dca60d4b84d90aaef452.tar.zst php-shirabe-058b85b641f806702031dca60d4b84d90aaef452.zip | |
chore: fix stale comment
Diffstat (limited to 'crates/shirabe/src')
| -rw-r--r-- | crates/shirabe/src/command/package_discovery_trait.rs | 2 | ||||
| -rw-r--r-- | crates/shirabe/src/util/bitbucket.rs | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/crates/shirabe/src/command/package_discovery_trait.rs b/crates/shirabe/src/command/package_discovery_trait.rs index 475b67db..e5427514 100644 --- a/crates/shirabe/src/command/package_discovery_trait.rs +++ b/crates/shirabe/src/command/package_discovery_trait.rs @@ -29,8 +29,6 @@ use shirabe_php_shim::{ /// @internal pub trait PackageDiscoveryTrait: BaseCommand { - // PHP: private $repos; private $repositorySets; - // TODO(phase-b): trait fields require an associated state struct in Rust; expose via accessors fn get_repos_mut( &self, ) -> std::cell::RefMut<'_, Option<crate::repository::RepositoryInterfaceHandle>>; diff --git a/crates/shirabe/src/util/bitbucket.rs b/crates/shirabe/src/util/bitbucket.rs index bba16e83..50d4b700 100644 --- a/crates/shirabe/src/util/bitbucket.rs +++ b/crates/shirabe/src/util/bitbucket.rs @@ -292,7 +292,7 @@ impl Bitbucket { return Ok(false); } - // TODO(phase-b): PHP $authConfigSource parameter is unused inside storeInAuthConfig + // NOTE: PHP $authConfigSource parameter is unused inside storeInAuthConfig // (upstream Composer bug); the dispatch on local vs. global is dropped here too. let _ = store_in_local_auth_config; self.store_in_auth_config(origin_url, &consumer_key, &consumer_secret)?; @@ -337,7 +337,7 @@ impl Bitbucket { return Ok(String::new()); } - // TODO(phase-b): PHP $authConfigSource parameter is unused inside storeInAuthConfig + // NOTE: PHP $authConfigSource parameter is unused inside storeInAuthConfig // (upstream Composer bug); the dispatch on local vs. global is dropped here too. self.store_in_auth_config(origin_url, consumer_key, consumer_secret)?; @@ -358,7 +358,7 @@ impl Bitbucket { } } - // TODO(phase-b): PHP $authConfigSource parameter dropped — unused in upstream Composer too. + // NOTE: PHP $authConfigSource parameter dropped — unused in upstream Composer too. fn store_in_auth_config( &mut self, origin_url: &str, |
