diff options
Diffstat (limited to 'test/formatters/samplecode')
| -rw-r--r-- | test/formatters/samplecode/phpcs/in.php | 5 | ||||
| -rw-r--r-- | test/formatters/samplecode/phpcs/out.php | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/test/formatters/samplecode/phpcs/in.php b/test/formatters/samplecode/phpcs/in.php new file mode 100644 index 0000000..378be5f --- /dev/null +++ b/test/formatters/samplecode/phpcs/in.php @@ -0,0 +1,5 @@ +<?php + +if(true) +{ + echo 'Hello World';} diff --git a/test/formatters/samplecode/phpcs/out.php b/test/formatters/samplecode/phpcs/out.php new file mode 100644 index 0000000..eeca083 --- /dev/null +++ b/test/formatters/samplecode/phpcs/out.php @@ -0,0 +1,5 @@ +<?php + +if(true) { + echo 'Hello World'; +} |
