diff options
Diffstat (limited to 'tests/data/app/code-checker/test-identical-operator.php')
-rw-r--r-- | tests/data/app/code-checker/test-identical-operator.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/data/app/code-checker/test-identical-operator.php b/tests/data/app/code-checker/test-identical-operator.php new file mode 100644 index 00000000000..4c7641ede89 --- /dev/null +++ b/tests/data/app/code-checker/test-identical-operator.php @@ -0,0 +1,13 @@ +<?php + +/** + * Class GoodClass - uses identical operator + */ +class GoodClass { + public function foo() { + if (true === false) { + } + if (true !== false) { + } + } +} |