From 593a36ac6a4987cd7fe043ef7c7cd9658819bff6 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 16 May 2026 21:32:01 +0900 Subject: feat(port): port InitCommand.php Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/shirabe-php-shim/src/lib.rs | 15 +++++++++++++++ 1 file changed, 15 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 f626ab9..ea417ee 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -797,6 +797,21 @@ pub fn str_replace_array( todo!() } +pub fn file(filename: &str, flags: i64) -> Option> { + todo!() +} + +pub fn ucwords(s: &str) -> String { + todo!() +} + +pub fn get_current_user() -> String { + todo!() +} + +pub const FILE_IGNORE_NEW_LINES: i64 = 2; +pub const FILTER_VALIDATE_EMAIL: i64 = 274; + pub fn array_intersect_key(array1: &IndexMap>, array2: &IndexMap>) -> IndexMap> { todo!() } -- cgit v1.3.1