<?php namespace MailChannels; class InputReaderMockImpl implements InputReader { private $input; public function setInput($input) { $this->input = $input; } public function read() { return $this->input; } }