Skip to content

Commit 6699fb0

Browse files
committed
Fix CS
1 parent 36a017f commit 6699fb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Filesystem.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ public function isAbsolutePath(string $file)
615615
*
616616
* @return string The new temporary filename (with path), or throw an exception on failure
617617
*/
618-
public function tempnam(string $dir, string $prefix/*, string $suffix = ''*/)
618+
public function tempnam(string $dir, string $prefix/* , string $suffix = '' */)
619619
{
620620
$suffix = \func_num_args() > 2 ? func_get_arg(2) : '';
621621
[$scheme, $hierarchy] = $this->getSchemeAndHierarchy($dir);
@@ -700,7 +700,7 @@ public function dumpFile(string $filename, $content)
700700
*
701701
* @throws IOException If the file is not writable
702702
*/
703-
public function appendToFile(string $filename, $content/*, bool $lock = false*/)
703+
public function appendToFile(string $filename, $content/* , bool $lock = false */)
704704
{
705705
if (\is_array($content)) {
706706
throw new \TypeError(sprintf('Argument 2 passed to "%s()" must be string or resource, array given.', __METHOD__));

0 commit comments

Comments
 (0)