mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
Merge pull request #7284 from weirdan/deprecate-html-escaped-string
This commit is contained in:
commit
13980b583b
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<files psalm-version="dev-master@1c078136273a669d52d234251ddbae4cd0507d38">
|
||||
<files psalm-version="dev-master">
|
||||
<file src="examples/TemplateChecker.php">
|
||||
<PossiblyUndefinedIntArrayOffset occurrences="2">
|
||||
<code>$comment_block->tags['variablesfrom'][0]</code>
|
||||
@ -642,8 +642,9 @@
|
||||
</DeprecatedClass>
|
||||
</file>
|
||||
<file src="src/Psalm/Type/Atomic.php">
|
||||
<DeprecatedClass occurrences="1">
|
||||
<DeprecatedClass occurrences="2">
|
||||
<code>new TEmpty()</code>
|
||||
<code>new THtmlEscapedString()</code>
|
||||
</DeprecatedClass>
|
||||
<PossiblyUndefinedIntArrayOffset occurrences="1">
|
||||
<code>array_keys($template_type_map[$value])[0]</code>
|
||||
|
@ -4,6 +4,7 @@ namespace Psalm\Type\Atomic;
|
||||
|
||||
/**
|
||||
* Special type, specifically for consumption by plugins.
|
||||
* @deprecated going to be removed in Psalm 5. Use taints instead.
|
||||
*/
|
||||
class THtmlEscapedString extends TString
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user