Skip to content

Commit 4b2de74

Browse files
committed
fix: fix php-cs-fixer style error
1 parent 3824475 commit 4b2de74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Build/CompressBuildFilesStep.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private function addFileToArchive(\ZipArchive $archive, SplFileInfo $file)
105105

106106
$relativePathName = str_replace('\\', '/', $file->getRelativePathname());
107107
$archive->addFile($file->getRealPath(), $relativePathName);
108-
$archive->setExternalAttributesName($relativePathName, \ZipArchive::OPSYS_UNIX, (33060 & 0xffff) << 16);
108+
$archive->setExternalAttributesName($relativePathName, \ZipArchive::OPSYS_UNIX, (33060 & 0xFFFF) << 16);
109109
}
110110

111111
/**

0 commit comments

Comments
 (0)