From 2fc9725b241f396a4d137527abd712ea1a54fed5 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Wed, 3 Sep 2025 01:26:09 +0200 Subject: [PATCH] Update php.mdx --- docs/sdks/languages/php.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/sdks/languages/php.mdx b/docs/sdks/languages/php.mdx index 3337f2238..58f9ceaf5 100644 --- a/docs/sdks/languages/php.mdx +++ b/docs/sdks/languages/php.mdx @@ -22,7 +22,7 @@ use Infisical\SDK\InfisicalSDK; $sdk = new InfisicalSDK('http://localhost:8080'); // Authenticate with Infisical -$response = $sdk->auth()->universal_auth()->login( +$response = $sdk->auth()->universalAuth()->login( "your-machine-identity-client-id", "your-machine-identity-client-secret" ); @@ -83,7 +83,7 @@ $params = new ListSecretsParameters( tagSlugs: ["tag1", "tag2"], // Optional recursive: true, // Optional expandSecretReferences: true, // Optional - attach_to_process_env: false, // Optional + attachToProcessEnv: false, // Optional skipUniqueValidation: false // Optional ); @@ -97,7 +97,7 @@ $secrets = $sdk->secrets()->list($params); - `tagSlugs` (array, optional): Tags to filter secrets. - `recursive` (bool, optional): Whether to list secrets recursively. - `expandSecretReferences` (bool, optional): Whether to expand secret references. -- `attach_to_process_env` (bool, optional): Whether to attach secrets to process environment variables. +- `attachToProcessEnv` (bool, optional): Whether to attach secrets to process environment variables. - `skipUniqueValidation` (bool, optional): Whether to skip unique validation. **Returns:**