Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/php/injections.scm')
-rw-r--r--runtime/queries/php/injections.scm19
1 files changed, 0 insertions, 19 deletions
diff --git a/runtime/queries/php/injections.scm b/runtime/queries/php/injections.scm
index 8d1b9740..614a3850 100644
--- a/runtime/queries/php/injections.scm
+++ b/runtime/queries/php/injections.scm
@@ -4,22 +4,3 @@
((comment) @injection.content
(#set! injection.language "comment"))
-
-((function_call_expression
- function: (name) @_function
- arguments: (arguments . (argument (_ (string_value) @injection.content))))
- (#match? @_function "^preg_")
- (#set! injection.language "regex"))
-
-((function_call_expression
- function: (name) @_function
- arguments: (arguments (_) (argument (_ (string_value) @injection.content))))
- (#match? @_function "^mysqli_")
- (#set! injection.language "sql"))
-
-((member_call_expression
- object: (_)
- name: (name) @_function
- arguments: (arguments . (argument (_ (string_value) @injection.content))))
- (#match? @_function "^(prepare|query)$")
- (#set! injection.language "sql"))