aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/json
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/json
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/json')
-rw-r--r--crates/shirabe/src/json/json_file.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/crates/shirabe/src/json/json_file.rs b/crates/shirabe/src/json/json_file.rs
index e37ba10c..1d6a75ce 100644
--- a/crates/shirabe/src/json/json_file.rs
+++ b/crates/shirabe/src/json/json_file.rs
@@ -135,7 +135,6 @@ impl JsonFile {
///
/// @throws ParsingException
/// @throws \RuntimeException
- /// @return mixed
pub fn read(&self) -> anyhow::Result<PhpMixed> {
let json: Option<String> = match (|| -> anyhow::Result<Option<String>> {
if let Some(http_downloader) = &self.http_downloader {
@@ -281,8 +280,6 @@ impl JsonFile {
}
/// Modify file properties only if content modified
- ///
- /// @return int|false
fn file_put_contents_if_modified(
&self,
path: &str,
@@ -306,8 +303,6 @@ impl JsonFile {
/// @throws JsonValidationException
/// @throws ParsingException
/// @return true true on success
- ///
- /// @phpstan-param self::*_SCHEMA $schema
pub fn validate_schema(&self, schema: i64, schema_file: Option<&str>) -> anyhow::Result<bool> {
if !Filesystem::is_readable(&self.path) {
return Err(RuntimeException {
@@ -333,8 +328,6 @@ impl JsonFile {
/// @param string|null $schemaFile a path to the schema file
/// @throws JsonValidationException
/// @return true true on success
- ///
- /// @phpstan-param self::*_SCHEMA $schema
pub fn validate_json_schema(
source: &str,
data: &PhpMixed,
@@ -487,7 +480,6 @@ impl JsonFile {
/// @param string $file the json file
///
/// @throws ParsingException
- /// @return mixed
pub fn parse_json(json: Option<&str>, file: Option<&str>) -> anyhow::Result<PhpMixed> {
let json = match json {
None => return Ok(PhpMixed::Null),