Skip to content

Commit 184b1ec

Browse files
authored
Merge pull request #873 from mollie/fix/phpstan-ci-actions-cache
Fix PHPStan CI: replace ramsey/composer-install with plain composer install
2 parents 6d7a3e1 + d2694af commit 184b1ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
coverage: none
2323

2424
- name: Install composer dependencies
25-
uses: ramsey/composer-install@v3
25+
run: composer install --no-interaction --no-progress
2626

2727
- name: Run PHPStan
2828
run: ./vendor/bin/phpstan --error-format=github

src/Resources/ResourceCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function setItems(array $items): self
2929
}
3030

3131
/**
32-
* @return $this
32+
* @return static
3333
*/
3434
public static function withResponse(Response $response, Connector $connector, $items = [], ?\stdClass $_links = null): self
3535
{

0 commit comments

Comments
 (0)