From 12bbfc80c4e42ebd82e26c04c49d7d355ea086d6 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 15 May 2026 23:50:17 +0900 Subject: feat(port): port RepositoryFactory.php --- crates/shirabe-php-shim/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crates/shirabe-php-shim') diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index d2052a3..95dbd4d 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -230,6 +230,9 @@ pub const PHP_URL_HOST: i64 = 1; pub const PHP_URL_PORT: i64 = 2; pub const PHP_URL_PATH: i64 = 5; pub const PATHINFO_FILENAME: i64 = 64; +pub const PATHINFO_EXTENSION: i64 = 4; +pub const PATHINFO_DIRNAME: i64 = 1; +pub const PATHINFO_BASENAME: i64 = 2; pub const DIRECTORY_SEPARATOR: &str = "/"; pub const HHVM_VERSION: Option<&str> = None; -- cgit v1.3.1