Skip to content

Commit 7fbd49a

Browse files
committed
[TASK] Fix CGL: use explicit octal notation for mkdir permission
1 parent add60cc commit 7fbd49a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Integration/InvalidGuidesXmlTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ final class InvalidGuidesXmlTest extends TestCase
2222
protected function setUp(): void
2323
{
2424
$this->tempDir = sys_get_temp_dir() . '/render-guides-invalid-test-' . uniqid();
25-
mkdir($this->tempDir, 0755, true);
25+
mkdir($this->tempDir, 0o755, true);
2626

2727
// Copy fixture files to temp directory
2828
copy(self::FIXTURE_SOURCE . '/guides.xml.fixture', $this->tempDir . '/guides.xml');

0 commit comments

Comments
 (0)