mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
12 lines
150 B
PHP
12 lines
150 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class BadClass - uses equal instead of identical operator
|
||
|
|
*/
|
||
|
|
class BadClass {
|
||
|
|
public function foo() {
|
||
|
|
if (true == false) {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|