Skip to content

Commit 6e12fd6

Browse files
committed
Fix for Travis
1 parent 257fc9b commit 6e12fd6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Kernel/Types/Type.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ class Type
1010
public function __construct($value)
1111
{
1212
// Validate value which is scalar.
13-
if (
14-
!is_int($value) &&
13+
if (!is_int($value) &&
1514
!is_float($value) &&
1615
!is_string($value) &&
1716
!is_bool($value)

0 commit comments

Comments
 (0)