| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 10 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 38 | public function processLine(string $line): State  | 
            ||
| 39 |     { | 
            ||
| 40 |         if (!StringUtils::startsWith(self::RENAME_TO, $line)) { | 
            ||
| 41 | throw DiffParseException::missingRenameTo($line);  | 
            ||
| 42 | }  | 
            ||
| 43 | |||
| 44 | $newFileName = StringUtils::removeFromStart(self::RENAME_TO, $line);  | 
            ||
| 45 | $this->fileMutationBuilder->setNewFileName(new NewFileName($newFileName));  | 
            ||
| 46 | |||
| 47 | return new FindChangeHunkStartState($this->fileMutationBuilder);  | 
            ||
| 48 | }  | 
            ||
| 55 |