From e52808a183fb67fa44aa088e5cdd2fab6dbe28c7 Mon Sep 17 00:00:00 2001 From: kaizen-ci Date: Mon, 10 May 2021 22:33:17 +0000 Subject: [PATCH] [ci-review] Rector Rectify --- src/ValueObject/Application/File.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/ValueObject/Application/File.php b/src/ValueObject/Application/File.php index 87f0d951544..2dd5aa5c938 100644 --- a/src/ValueObject/Application/File.php +++ b/src/ValueObject/Application/File.php @@ -20,11 +20,6 @@ final class File */ private $hasChanged = false; - /** - * @var string - */ - private $originalFileContent; - /** * @var FileDiff|null */ @@ -57,10 +52,9 @@ final class File public function __construct( private SmartFileInfo $smartFileInfo, - private string $fileContent + private string $originalFileContent ) { - $this->originalFileContent = $fileContent; } public function getSmartFileInfo(): SmartFileInfo