How can I force to be handle just as a string and not be interpreted by the IDE as something that it is not?
Granted the following string is rather unusual and gets identified as SQL by the IDE.
'SELECT {$selectors} FROM `{$table}`{$where}{$order}{$limit}{$offset}'
As you probably guessed by now, the placeholders are seen as invalid SQL code, and give me a slew of error in the IDE.
Already attempted to "fix" those issues via @noinspection, but there are multiple warnings and errors detected in that one line of code, that it is not feasible to suppress those "issues" one by one.
Another drawback is that some errors require me to disable some really useful inspections and I really don't want that.
So, is there a way just force PhpStorm to treat that one string as an actual string and not, in this case, SQL?