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, 0 insertions, 13 deletions
diff --git a/tests/data/app/code-checker/test-identical-operator.php b/tests/data/app/code-checker/test-identical-operator.php deleted file mode 100644 index 4c7641ede89..00000000000 --- a/tests/data/app/code-checker/test-identical-operator.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - -/** - * Class GoodClass - uses identical operator - */ -class GoodClass { - public function foo() { - if (true === false) { - } - if (true !== false) { - } - } -} |