public function __construct(string $destination) { $stream = fopen($destination, 'a'); if ($stream) { $this->stream = $stream; } else { throw new \RuntimeException(sprintf('Unable to open %s for writing', $destination)); } }