mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-15 03:32: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 ColorRuleTest extends TestCase
|
||||
$validator = Validator::make([
|
||||
'color' => '#ef5350',
|
||||
], [
|
||||
'color' => [new ColorRule()],
|
||||
'color' => [new ColorRule],
|
||||
]);
|
||||
|
||||
// Act
|
||||
@@ -38,7 +38,7 @@ class ColorRuleTest extends TestCase
|
||||
$validator = Validator::make([
|
||||
'color' => true,
|
||||
], [
|
||||
'color' => [new ColorRule()],
|
||||
'color' => [new ColorRule],
|
||||
]);
|
||||
|
||||
// Act
|
||||
@@ -56,7 +56,7 @@ class ColorRuleTest extends TestCase
|
||||
$validator = Validator::make([
|
||||
'color' => 'rgb(0,0,0)',
|
||||
], [
|
||||
'color' => [new ColorRule()],
|
||||
'color' => [new ColorRule],
|
||||
]);
|
||||
|
||||
// Act
|
||||
|
||||
Reference in New Issue
Block a user