Skip to content

Commit

Permalink
cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JoMessina committed Feb 1, 2024
1 parent 2049f48 commit f8ee82b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: |
wget -q https://cs.symfony.com/download/php-cs-fixer-v3.phar -O php-cs-fixer
chmod a+x php-cs-fixer
PHP_CS_FIXER_IGNORE_ENV=true ./php-cs-fixer fix src --dry-run
./php-cs-fixer fix src --dry-run
phpstan:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions src/Adapter/Filesystem/Satellite.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ public function build(
fclose($stream);
}
} else {
$dirname = dirname($this->workdir.'/'.$file->getPath());
$dirname = \dirname($this->workdir.'/'.$file->getPath());
if (!file_exists($dirname)) {
mkdir($dirname, 0755, true);
mkdir($dirname, 0o755, true);
}
$stream = fopen($this->workdir.'/'.$file->getPath(), 'wb');
stream_copy_to_stream($file->asResource(), $stream);
Expand Down

0 comments on commit f8ee82b

Please sign in to comment.