diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index fa57092..917ff3d 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -88,7 +88,6 @@ jobs: run: phpcs - name: Psalm - continue-on-error: true run: | psalm -c psalm.xml \ --show-info=true \ @@ -96,6 +95,7 @@ jobs: --php-version=${{ steps.setup-php.outputs.php-version }} - name: Psalm (testsuite) + continue-on-error: true run: | psalm -c psalm-dev.xml \ --show-info=true \ diff --git a/tests/src/Limiters/DeviceCookieLimiterTest.php b/tests/src/Limiters/DeviceCookieLimiterTest.php index e62cdde..7d8fd5c 100644 --- a/tests/src/Limiters/DeviceCookieLimiterTest.php +++ b/tests/src/Limiters/DeviceCookieLimiterTest.php @@ -15,7 +15,7 @@ class DeviceCookieLimiterTest extends TestCase { /** - * @var MockObject|HTTP + * @var \PHPUnit\Framework\MockObject\MockObject|\SimpleSAML\Utils\HTTP */ private $mockHttp;