# Bug Report | Subject | Details | | :------------- | :--------------------| | Rector version | last dev-main | | Installed as | composer dependency | ## Minimal PHP Code Causing Issue See https://getrector.com/demo/a87b8dde-e276-488c-83dc-d357bd5845d6 ```php <?php if (! (1 < (1 ? 2 : 1))) { } ``` ### Responsible rules * `SimplifyConditionsRector` ## Expected Behavior ```php <?php if (1 >= (1 ? 2 : 1)) { } ``` ## Failing fixture Pull request with failing test for this https://github.com/rectorphp/rector-src/pull/8121
Bug Report
Minimal PHP Code Causing Issue
See https://getrector.com/demo/a87b8dde-e276-488c-83dc-d357bd5845d6
Responsible rules
SimplifyConditionsRectorExpected Behavior
Failing fixture
Pull request with failing test for this rectorphp/rector-src#8121