Updated dependencies; Fixed codeformatting and phpstan

This commit is contained in:
Constantin Graf
2024-07-31 12:53:41 +02:00
committed by Constantin Graf
parent 5b7df869ad
commit d8968399d6
78 changed files with 1038 additions and 1148 deletions

View File

@@ -20,7 +20,7 @@ class CurrencyRuleTest extends TestCase
$validator = Validator::make([
'currency' => 'EUR',
], [
'currency' => [new CurrencyRule()],
'currency' => [new CurrencyRule],
]);
// Act
@@ -38,7 +38,7 @@ class CurrencyRuleTest extends TestCase
$validator = Validator::make([
'currency' => true,
], [
'currency' => [new CurrencyRule()],
'currency' => [new CurrencyRule],
]);
// Act
@@ -56,7 +56,7 @@ class CurrencyRuleTest extends TestCase
$validator = Validator::make([
'currency' => 'XXX',
], [
'currency' => [new CurrencyRule()],
'currency' => [new CurrencyRule],
]);
// Act
@@ -74,7 +74,7 @@ class CurrencyRuleTest extends TestCase
$validator = Validator::make([
'currency' => 'eur',
], [
'currency' => [new CurrencyRule()],
'currency' => [new CurrencyRule],
]);
// Act