Chris@14: Chris@14: * Chris@14: * For the full copyright and license information, please view the LICENSE Chris@14: * file that was distributed with this source code. Chris@14: */ Chris@14: namespace SebastianBergmann\Diff\Output; Chris@14: Chris@14: /** Chris@14: * Defines how an output builder should take a generated Chris@14: * diff array and return a string representation of that diff. Chris@14: */ Chris@14: interface DiffOutputBuilderInterface Chris@14: { Chris@14: public function getDiff(array $diff): string; Chris@14: }