We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13785aa commit 69abc93Copy full SHA for 69abc93
src/main/kotlin/com/github/xepozz/php_opcodes_language/language/psi/impl/PHPOpPsiImplUtil.kt
@@ -6,5 +6,6 @@ class PHPOpPsiImplUtil {
6
companion object {
7
@JvmStatic
8
fun isVariable(element: PHPOpParameter): Boolean = element.text.startsWith("$")
9
+ fun isVariable(element: PHPOpParameter): Boolean = element.text.matches(Regex("[TV]\\d+"))
10
}
11
0 commit comments