Skip to content

Commit

Permalink
Fixed PHPstan issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtronics committed Jan 21, 2025
1 parent 4eb1806 commit b49cb5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:[email protected]:3306/test?serverVersion=8.0.35'
PHP_VERSION: ${{ matrix.php-versions }}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit b49cb5e

Please sign in to comment.