refactor: move remaining language examples to fixture files

This commit is contained in:
Paul Gauthier (aider) 2024-11-27 07:05:10 -08:00
parent 44ceb8f1a0
commit 8c218e9edc
6 changed files with 89 additions and 0 deletions

5
tests/fixtures/languages/php/test.php vendored Normal file
View file

@ -0,0 +1,5 @@
<?php
function greet($name) {
echo "Hello, $name!";
}
?>