* 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 Dariusz Rumiński */ final class SebastianBergmannDiffer implements DifferInterface { /** * @var Differ */ private $differ; public function __construct() { $this->differ = new Differ(); } /** * {@inheritdoc} */ public function diff($old, $new) { return $this->differ->diff($old, $new); } }