Skip to content

Commit 01cb494

Browse files
committed
Fix psalm not running
The issue was that we were using psalm/phar instead of vimeo/psalm. This caused issue with the custom psalm plugin in buildd/psalm. This is using the opportunity to also update the psalm version from 3.8 to 3.17 and the php-cs-fixer too. Signed-off-by: Carl Schwan <[email protected]>
1 parent 0c63183 commit 01cb494

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+976
-696
lines changed

.php_cs.dist renamed to .php-cs-fixer.dist.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
declare(strict_types=1);
44

5-
require_once './lib/composer/autoload.php';
5+
require_once './vendor-bin/cs-fixer/vendor/autoload.php';
66

77
use Nextcloud\CodingStandard\Config;
88

99
$config = new Config();
1010
$config
1111
->getFinder()
12+
->ignoreVCSIgnored(true)
1213
->exclude('config')
1314
->exclude('data')
1415
->notPath('3rdparty')

build/integration/features/bootstrap/WebDav.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ public function userUploadsBulkedFiles($user, $name1, $content1, $name2, $conten
623623
$body .= $content3."\r\n";
624624
$body .= '--'.$boundary."--\r\n";
625625

626-
$stream = fopen('php://temp','r+');
626+
$stream = fopen('php://temp', 'r+');
627627
fwrite($stream, $body);
628628
rewind($stream);
629629

0 commit comments

Comments
 (0)