<?php public function ensuring_streams_are_rewound_when_writing(): void
{
$writeStream = stream_with_contents('contents');
fseek($writeStream, 4);
$this->filesystem->writeStream('path.txt', $writeStream);
$contents = $this->filesystem->read('path.txt');