fix(cli): add php support for the cli (#3735)

This commit is contained in:
HugoCasa
2024-05-15 11:49:47 +02:00
committed by GitHub
parent 00c0e1f2a1
commit 632a0c5593
6 changed files with 17 additions and 2 deletions

View File

@@ -78,4 +78,10 @@ func main() (interface{}, error) {
`,
powershell: `Write-Output "Hello world"`,
php: `<?php
function main() {
return "Hello world";
}
`,
};