nextcloud/tests/data/app/code-checker/test-identical-operator.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
164 B
PHP
Raw Normal View History

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