Skip to content

Commit 3bbdcfe

Browse files
Fixed tests
1 parent ff6f80e commit 3bbdcfe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tests/Models/TestModelExtendingClassWithUuid1.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ class TestModelExtendingClassWithUuid1 extends Model
2121
*
2222
* @var int
2323
*/
24-
protected $uuidVersion = 1;
24+
protected int $uuidVersion = 1;
2525
}

tests/Models/TestModelExtendingClassWithoutUuid1.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ class TestModelExtendingClassWithoutUuid1 extends Model
2020
*
2121
* @var bool
2222
*/
23-
protected $keyIsUuid = false;
23+
protected bool $keyIsUuid = false;
2424

2525
/**
2626
* The UUID version to use.
2727
*
2828
* @var int
2929
*/
30-
protected $uuidVersion = 1;
30+
protected int $uuidVersion = 1;
3131
}

tests/Models/TestModelExtendingClassWithoutUuid4.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ class TestModelExtendingClassWithoutUuid4 extends Model
2020
*
2121
* @var bool
2222
*/
23-
protected $keyIsUuid = false;
23+
protected bool $keyIsUuid = false;
2424
}

0 commit comments

Comments
 (0)