Skip to content

Commit f8ee82b

Browse files
committed
cs-fixer changes
1 parent 2049f48 commit f8ee82b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/quality.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run: |
1515
wget -q https://cs.symfony.com/download/php-cs-fixer-v3.phar -O php-cs-fixer
1616
chmod a+x php-cs-fixer
17-
PHP_CS_FIXER_IGNORE_ENV=true ./php-cs-fixer fix src --dry-run
17+
./php-cs-fixer fix src --dry-run
1818
1919
phpstan:
2020
runs-on: ubuntu-latest

src/Adapter/Filesystem/Satellite.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ public function build(
4848
fclose($stream);
4949
}
5050
} else {
51-
$dirname = dirname($this->workdir.'/'.$file->getPath());
51+
$dirname = \dirname($this->workdir.'/'.$file->getPath());
5252
if (!file_exists($dirname)) {
53-
mkdir($dirname, 0755, true);
53+
mkdir($dirname, 0o755, true);
5454
}
5555
$stream = fopen($this->workdir.'/'.$file->getPath(), 'wb');
5656
stream_copy_to_stream($file->asResource(), $stream);

0 commit comments

Comments
 (0)