PHPStan code checks fail because it thinks that the t() function only allows 2 params instead of 3. Drupal core allows 3 parameters, potx allows 2 parameters in t().
Run PHPstan code check on a file that has t() with 3 parameters while potx is installed. It will fail because it picks up the t() signature of potx.
Add a third unused parameter to potx's t() function in potx.inc:3355.
Active
1.0
Code