mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
14 lines
164 B
PHP
14 lines
164 B
PHP
<?php
|
|
|
|
/**
|
|
* Class GoodClass - uses identical operator
|
|
*/
|
|
class GoodClass {
|
|
public function foo() {
|
|
if (true === false) {
|
|
}
|
|
if (true !== false) {
|
|
}
|
|
}
|
|
}
|