Skip to content

Commit 418e825

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Add missing dots at the end of exception messages [DI][Form] Fixed test suite (TimeType changes & unresolved merge conflict) Fix bad merge Add missing dots at the end of exception messages
2 parents 3afadc0 + 6ef0970 commit 418e825

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Filesystem.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function mkdir($dirs, int $mode = 0777)
9999
if (self::$lastError) {
100100
throw new IOException(sprintf('Failed to create "%s": %s.', $dir, self::$lastError), 0, null, $dir);
101101
}
102-
throw new IOException(sprintf('Failed to create "%s"', $dir), 0, null, $dir);
102+
throw new IOException(sprintf('Failed to create "%s".', $dir), 0, null, $dir);
103103
}
104104
}
105105
}
@@ -345,7 +345,7 @@ public function hardlink(string $originFile, $targetFiles)
345345
}
346346

347347
if (!is_file($originFile)) {
348-
throw new FileNotFoundException(sprintf('Origin file "%s" is not a file', $originFile));
348+
throw new FileNotFoundException(sprintf('Origin file "%s" is not a file.', $originFile));
349349
}
350350

351351
foreach ($this->toIterable($targetFiles) as $targetFile) {

0 commit comments

Comments
 (0)