| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 5 | 
| CRAP Score | 1 | 
| Changes | 0 | ||
| 1 | <?php | ||
| 16 | 1 | public static function fromInvalidMoveOperation(string $fromPath, string $toPath) : self | |
| 17 |     { | ||
| 18 | 1 | return new self(sprintf( | |
| 19 | 'Could not move file "%s" to location "%s": ' | ||
| 20 | 1 | . 'either the source file is not readable, or the destination is not writable', | |
| 21 | 1 | $fromPath, | |
| 22 | 1 | $toPath | |
| 23 | )); | ||
| 24 | } | ||
| 25 | |||
| 35 |