diff options
Diffstat (limited to 'tests/data/app/code-checker/test-implements.php')
-rw-r--r-- | tests/data/app/code-checker/test-implements.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/data/app/code-checker/test-implements.php b/tests/data/app/code-checker/test-implements.php new file mode 100644 index 00000000000..3bf2f959b52 --- /dev/null +++ b/tests/data/app/code-checker/test-implements.php @@ -0,0 +1,9 @@ +<?php + +/** + * Class BadClass - sub class a forbidden class is not allowed + * NOTE: lowercase typo is intended + */ +class BadClass implements oC_Avatar { + +} |