From 67a7271a94d43ccc573716b4633f426cf24cead6 Mon Sep 17 00:00:00 2001 From: Jarkko Saltiola Date: Sun, 8 Dec 2024 11:01:17 +0200 Subject: [PATCH] Add missing code snippet language definition Noticed from missing syntax colors in output. --- content/documentation/php-interop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/documentation/php-interop.md b/content/documentation/php-interop.md index 0a867d5..3e8cb4c 100644 --- a/content/documentation/php-interop.md +++ b/content/documentation/php-interop.md @@ -14,7 +14,7 @@ Use the `php/` prefix to access the global variables (superglobals) in combinati Named constants set with PHP [`define`](https://www.php.net/manual/en/function.define.php) can be accessed in Phel via `php/CONSTANT_NAME`. -``` +```phel (php/define "MY_SETTING" "My value") # Calls PHP define('MY_SETTING', 'My value"); php/MY_SETTING # Returns "My value" ```