aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/vcs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-08-06 04:22:46 +0900
committernsfisis <nsfisis@gmail.com>2026-08-06 04:23:22 +0900
commit3d4a0cadc950d4440251efa11b55b0bfb0afdef7 (patch)
treecf1cd680867b9aa633eafe6332b881711b738823 /crates/shirabe/src/repository/vcs
parentce6192f1cfaac63457b173f573ada661a4665bfb (diff)
downloadphp-shirabe-3d4a0cadc950d4440251efa11b55b0bfb0afdef7.tar.gz
php-shirabe-3d4a0cadc950d4440251efa11b55b0bfb0afdef7.tar.zst
php-shirabe-3d4a0cadc950d4440251efa11b55b0bfb0afdef7.zip
chore: drop @param/@return tags that only restate Rust types
The ported docblocks copied @param and @return straight from the PHP source. When such a tag carries nothing but a type and an argument name, the Rust signature already states it, so the line is noise. Tags whose text adds prose beyond the type are kept. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/repository/vcs')
-rw-r--r--crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs2
-rw-r--r--crates/shirabe/src/repository/vcs/github_driver.rs4
-rw-r--r--crates/shirabe/src/repository/vcs/gitlab_driver.rs7
3 files changed, 0 insertions, 13 deletions
diff --git a/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs b/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
index 394077e9..87cf7c44 100644
--- a/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
+++ b/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
@@ -741,7 +741,6 @@ impl GitBitbucketDriver {
/// @phpstan-impure
///
- /// @return true
/// @throws \RuntimeException
fn attempt_clone_fallback(&mut self) -> anyhow::Result<bool> {
match self.setup_fallback_driver(&self.generate_ssh_url()) {
@@ -775,7 +774,6 @@ impl GitBitbucketDriver {
Ok(())
}
- /// @param array<array{name: string, href: string}> $cloneLinks
fn parse_clone_urls(&mut self, clone_links: Option<PhpMixed>) {
let list = match clone_links {
Some(PhpMixed::List(l)) => l,
diff --git a/crates/shirabe/src/repository/vcs/github_driver.rs b/crates/shirabe/src/repository/vcs/github_driver.rs
index 8134a16b..c7b84e51 100644
--- a/crates/shirabe/src/repository/vcs/github_driver.rs
+++ b/crates/shirabe/src/repository/vcs/github_driver.rs
@@ -416,7 +416,6 @@ impl GitHubDriver {
.unwrap_or(None))
}
- /// @return array<int, array{type: string, url: string}>|false
fn get_funding_info(&mut self) -> PhpMixed {
if let Some(ref info) = self.funding_info {
return info.clone();
@@ -996,8 +995,6 @@ impl GitHubDriver {
}
/// Gives back the loaded <github-api>/repos/<owner>/<repo> result
- ///
- /// @return mixed[]|null
pub fn get_repo_data(&mut self) -> anyhow::Result<Option<IndexMap<String, PhpMixed>>> {
self.fetch_root_identifier()?;
@@ -1234,7 +1231,6 @@ impl GitHubDriver {
/// @phpstan-impure
///
- /// @return true
/// @throws \RuntimeException
pub(crate) fn attempt_clone_fallback(
&mut self,
diff --git a/crates/shirabe/src/repository/vcs/gitlab_driver.rs b/crates/shirabe/src/repository/vcs/gitlab_driver.rs
index 9a4c22a1..35d0b5ca 100644
--- a/crates/shirabe/src/repository/vcs/gitlab_driver.rs
+++ b/crates/shirabe/src/repository/vcs/gitlab_driver.rs
@@ -721,7 +721,6 @@ impl GitLabDriver {
/// @phpstan-impure
///
- /// @return true
/// @throws \RuntimeException
pub(crate) fn attempt_clone_fallback(&mut self) -> anyhow::Result<bool> {
let url = if !self.is_private {
@@ -1030,8 +1029,6 @@ impl GitLabDriver {
}
/// Gives back the loaded <gitlab-api>/projects/<owner>/<repo> result
- ///
- /// @return mixed[]|null
pub fn get_repo_data(&mut self) -> anyhow::Result<Option<IndexMap<String, PhpMixed>>> {
self.fetch_project()?;
@@ -1061,10 +1058,6 @@ impl GitLabDriver {
None
}
- /// @param array<string> $configuredDomains
- /// @param array<string> $urlParts
- ///
- /// @return string|false
fn determine_origin(
configured_domains: &PhpMixed,
guessed_domain: String,