for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Archivr\ConnectionAdapter;
class DummyConnectionAdapter implements ConnectionAdapterInterface
{
public function read(string $relativePath): string
throw new \RuntimeException('Trying to call ' . __FUNCTION__ . '() on DummyVaultConnection.');
}
public function write(string $relativePath, string $content)
public function writeStream(string $relativePath, $stream)
public function exists(string $relativePath): bool
public function unlink(string $relativePath)
public function getReadStream(string $relativePath)