diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-15 23:51:48 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 10:00:40 +0900 |
| commit | b546fbdb2db838cd6fa5e3d4e1fc7ae10b1c7dae (patch) | |
| tree | 0ff2ad81af1a8f77cd53efa26448a81413de23ad /crates/shirabe-php-shim | |
| parent | eee660c46a6b919ff5db6d447c3a500140306991 (diff) | |
| download | php-shirabe-b546fbdb2db838cd6fa5e3d4e1fc7ae10b1c7dae.tar.gz php-shirabe-b546fbdb2db838cd6fa5e3d4e1fc7ae10b1c7dae.tar.zst php-shirabe-b546fbdb2db838cd6fa5e3d4e1fc7ae10b1c7dae.zip | |
feat(port): port PerforceDriver.php
Diffstat (limited to 'crates/shirabe-php-shim')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 95dbd4d..0adb17b 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -90,6 +90,12 @@ pub struct LogicException { } #[derive(Debug)] +pub struct BadMethodCallException { + pub message: String, + pub code: i64, +} + +#[derive(Debug)] pub struct ErrorException { pub message: String, pub code: i64, |
