Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rector fails with "Division by zero" caused by 1/0 #9026

Closed
UweOhse opened this issue Feb 19, 2025 · 1 comment · Fixed by rectorphp/rector-src#6743
Closed

Rector fails with "Division by zero" caused by 1/0 #9026

UweOhse opened this issue Feb 19, 2025 · 1 comment · Fixed by rectorphp/rector-src#6743
Labels

Comments

@UweOhse
Copy link

UweOhse commented Feb 19, 2025

Bug Report

Rector 2.0.9:

[ERROR] Could not process "/var/www/nf/beta/test.php" file, due to:
"System error: "Division by zero"
Run Rector with "--debug" option and post the report here: https://github.com/rectorphp/rector/issues/new". On line: 185

Minimal PHP Code Causing Issue

<?php

function test($mode)
{
      // $x = 1 / (intval($mode) - 3);  // this is ok.
      $x = 1 / 0;
}

This is an extract of larger function meant to trigger errors.

using withCodeQualityLevel(99)

https://getrector.com/demo/55fdb056-5406-4fa0-baa4-95881e25a400

Expected Behaviour

I don't know. I'd really prefer if rector left that code alone, may be it could warn about it.

Thank you

Thank you for rector.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
2 participants