diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-14 19:56:23 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-14 19:56:23 +0900 |
| commit | 6ffb4b4db1da067ca88f98d8164940a570c2b2af (patch) | |
| tree | 3011821fd2652c867a0701f0a634bdf41b245538 /crates/shirabe-php-shim/src/lib.rs | |
| parent | 9a65b4a9d24fe9b5759df05d4c2b06a6d2186dec (diff) | |
| download | php-shirabe-6ffb4b4db1da067ca88f98d8164940a570c2b2af.tar.gz php-shirabe-6ffb4b4db1da067ca88f98d8164940a570c2b2af.tar.zst php-shirabe-6ffb4b4db1da067ca88f98d8164940a570c2b2af.zip | |
feat(port): port PartialSecurityAdvisory.php
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 758dd1c..56b29e5 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -220,6 +220,10 @@ impl PharData { } } +pub trait JsonSerializable { + fn json_serialize(&self) -> PhpMixed; +} + pub fn class_exists(name: &str) -> bool { todo!() } |
