/opt/cpanel/ea-wappspector/vendor/rector/rector/src/BetterPhpDocParser/PhpDoc
NameSizeModeActions
ArrayItemNode.php12060644editdlrm
DoctrineAnnotationTagValueNode.php21160644editdlrm
SpacelessPhpDocTagNode.php4390644editdlrm
StringNode.php9600644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/rector/rector/src/BetterPhpDocParser/PhpDoc/StringNode.php (960B)
value = $value; $this->value = \str_replace('""', '"', $this->value); if (\strpos($this->value, "'") !== \false && \strpos($this->value, "\n") === \false) { $kind = String_::KIND_DOUBLE_QUOTED; } else { $kind = String_::KIND_SINGLE_QUOTED; } $this->setAttribute(AttributeKey::KIND, $kind); } public function __toString() : string { return '"' . \str_replace('"', '""', $this->value) . '"'; } }