*/ private array $filesByPath = []; /** * @var string[] */ public array $readPaths = []; public function put(string $path, string $contents): void { $this->filesByPath[$path] = $contents; } public function read(string $path): ?string { $this->readPaths[] = $path; return $this->filesByPath[$path] ?? null; } }