From 3f08ac80557400be0352fc62b146bb9a4f95c575 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 16 May 2026 00:31:22 +0900 Subject: feat(port): port ConfigValidator.php --- crates/shirabe-php-shim/src/lib.rs | 12 ++++++++++++ 1 file changed, 12 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 d89aed5..6a13fa1 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -667,3 +667,15 @@ pub fn random_bytes(length: usize) -> Vec { pub fn is_dir(path: &str) -> bool { todo!() } + +pub fn file_get_contents(path: &str) -> Option { + todo!() +} + +pub fn strtolower(s: &str) -> String { + todo!() +} + +pub fn array_intersect_key(array1: &IndexMap>, array2: &IndexMap>) -> IndexMap> { + todo!() +} -- cgit v1.3.1