File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 14
14
run : |
15
15
wget -q https://cs.symfony.com/download/php-cs-fixer-v3.phar -O php-cs-fixer
16
16
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
18
18
19
19
phpstan :
20
20
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ public function build(
48
48
fclose ($ stream );
49
49
}
50
50
} else {
51
- $ dirname = dirname ($ this ->workdir .'/ ' .$ file ->getPath ());
51
+ $ dirname = \ dirname ($ this ->workdir .'/ ' .$ file ->getPath ());
52
52
if (!file_exists ($ dirname )) {
53
- mkdir ($ dirname , 0755 , true );
53
+ mkdir ($ dirname , 0o755 , true );
54
54
}
55
55
$ stream = fopen ($ this ->workdir .'/ ' .$ file ->getPath (), 'wb ' );
56
56
stream_copy_to_stream ($ file ->asResource (), $ stream );
You can’t perform that action at this time.
0 commit comments