Create a new EntityBody from a string
string $string String of data:
EntityBody
public static function fromString($string) { $stream = fopen('php://temp', 'r+'); fwrite($stream, $string); rewind($stream); return new static($stream); }