diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 455f8a7..6778838 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -18,7 +18,7 @@ jobs: env: APP_ENV: test SYMFONY_DEPRECATIONS_HELPER: disabled - # Version suffix is important here, otherwise it will try to use a database connection on cache clearing + # Version suffix is important here, otherwise it will try to use a database connection on cache clearing DATABASE_URL: 'mysql://root:root@127.0.0.1:3306/test?serverVersion=8.0.35' PHP_VERSION: ${{ matrix.php-versions }} diff --git a/composer.json b/composer.json index 0a25f7c..49bcc13 100644 --- a/composer.json +++ b/composer.json @@ -142,7 +142,7 @@ "post-update-cmd": [ "@auto-scripts" ], - "phpstan": "vendor/bin/phpstan analyse src --memory-limit 1G --level 3" + "phpstan": "vendor/bin/phpstan analyse --memory-limit 1G" }, "conflict": { "symfony/symfony": "*" diff --git a/tests/Services/EmailConfirmation/ConfirmationEmailSenderTest.php b/tests/Services/EmailConfirmation/ConfirmationEmailSenderTest.php index f027726..8b12ae7 100644 --- a/tests/Services/EmailConfirmation/ConfirmationEmailSenderTest.php +++ b/tests/Services/EmailConfirmation/ConfirmationEmailSenderTest.php @@ -39,7 +39,7 @@ class ConfirmationEmailSenderTest extends WebTestCase protected ?Confirmer $confirmer2 = null; protected ?Department $department = null; - protected ?PaymentOrder $paymentOrder = null; + protected ?PaymentOrder $payment_order = null; protected ?EntityManagerInterface $em = null;