mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 03:35:01 +01:00
15 lines
222 B
PHP
15 lines
222 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Rector\Core\Tests\Standalone\Source;
|
|
|
|
final class LowQualityFile
|
|
{
|
|
public function run()
|
|
{
|
|
$a = true;
|
|
$b = false;
|
|
|
|
var_dump(! ($a === $b));
|
|
}
|
|
}
|