You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dont know if its of any help or not but I've been getting the following error when using an Azure PHP Web App: -
PHP Catchable fatal error: Argument 1 passed to bentaylorwork\azure\keyvault\Secret::get() must be an instance of bentaylorwork\azure\keyvault\string, string given...
To fix it I've remove the dataType hinting. So: -
public function get(string $secretName, string $version = null)
becomes: -
public function get($secretName, $version = null)
(Great code by the way! Thank you!!)
The text was updated successfully, but these errors were encountered:
Dont know if its of any help or not but I've been getting the following error when using an Azure PHP Web App: -
To fix it I've remove the dataType hinting. So: -
public function get(string $secretName, string $version = null)
becomes: -
public function get($secretName, $version = null)
(Great code by the way! Thank you!!)
The text was updated successfully, but these errors were encountered: