PhpClean
PhpClean copied to clipboard
Static Code Analysis for PhpStorm and Intellij Idea.
Bumps [org.jetbrains.kotlin.jvm](https://github.com/JetBrains/kotlin) from 2.1.10 to 2.2.21. Release notes Sourced from org.jetbrains.kotlin.jvm's releases. Kotlin 2.2.21 Changelog Backend. Wasm KT-81372 K/Wasm: JsException: Exception was thrown while running JavaScript code on Safari 18.2/18.3...
Context: Bumped into issues running the tests in OpenAI Codex' offline VM. Skips publishPlugin and runPluginVerifier in `--ofline` mode. Probably useful in some other context as well. Otherwise, you can...
Adds a test for the erroneous 'Deprecated __toString call' warning for code like `(string)$another->returnsBlaFoo();` I `src/test/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallIssue212Test.kt` Attempts to fix the issue inside `buildVisitor()` and `visitPhpMethodReference()` overrides in `src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspection.kt` Should fix...
`(string)$object->functionToCall()` will be incorrectly be interpreted as `((string)$object) ..`, which is a deprecated cast since PHP 8.1. ```php