mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-15 11:42:15 +01:00
Updated dependencies; Fixed codeformatting and phpstan
This commit is contained in:
committed by
Constantin Graf
parent
5b7df869ad
commit
d8968399d6
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user