Skip to content

Commit

Permalink
disable php cs fixer till last merged is released
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinDev committed Sep 3, 2021
1 parent ecf1ef9 commit 78d5262
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
@@ -1,3 +1,4 @@
#disable till https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/5938/commits/aeff4e3c4ed9cee172721c129ed90937adcd6b7a is released
name: Check & fix styling

on: [push]
Expand Down
2 changes: 1 addition & 1 deletion packages/static-generator/src/Generator/MediaGenerator.php
Expand Up @@ -28,7 +28,7 @@ protected function copyMediaToDownload()
$this->filesystem->mkdir($staticMediaDir);
}

$dir = getdir($mediaDir);
$dir = dir($mediaDir);
while (false !== $entry = $dir->read()) {
if ('.' == $entry || '..' == $entry) {
continue;
Expand Down

0 comments on commit 78d5262

Please sign in to comment.