Skip to content

Commit

Permalink
Merge branch '6.0' into 6.1
Browse files Browse the repository at this point in the history
* 6.0:
  Fix CS
  • Loading branch information
fabpot committed Jul 20, 2022
2 parents 3132d2f + 33787a6 commit c780e67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Filesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ public function dumpFile(string $filename, $content)
*
* @throws IOException If the file is not writable
*/
public function appendToFile(string $filename, $content/*, bool $lock = false*/)
public function appendToFile(string $filename, $content/* , bool $lock = false */)
{
if (\is_array($content)) {
throw new \TypeError(sprintf('Argument 2 passed to "%s()" must be string or resource, array given.', __METHOD__));
Expand Down
2 changes: 1 addition & 1 deletion Tests/FilesystemTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public function testRemoveCleansInvalidLinks()

// create symlink to nonexistent dir
rmdir($basePath.'dir');
$this->assertFalse(is_dir($basePath.'dir-link'));
$this->assertDirectoryDoesNotExist($basePath.'dir-link');

$this->filesystem->remove($basePath);

Expand Down

0 comments on commit c780e67

Please sign in to comment.