summaryrefslogtreecommitdiffstats
path: root/tests/data/app/code-checker/test-identical-operator.php
blob: 4c7641ede89377a7087a62379e8486fd80db66bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

/**
 * Class GoodClass - uses identical operator
 */
class GoodClass {
	public function foo() {
		if (true === false) {
		}
		if (true !== false) {
		}
	}
}