* Dariusz RumiƄski * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Differ; use PhpCsFixer\Diff\v1_4\Differ; /** * @author SpacePossum */ final class SebastianBergmannShortDiffer implements DifferInterface { /** * @var Differ */ private $differ; public function __construct() { $this->differ = new Differ("--- Original\n+++ New\n", false); } /** * {@inheritdoc} */ public function diff($old, $new) { return $this->differ->diff($old, $new); } }