Skip to content

Commit 7471fa5

Browse files
committed
Fix data type errors
1 parent 62e0304 commit 7471fa5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/MediaType/ResourceHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ class ResourceHandler
4040
/**
4141
* Resource icon information.
4242
*
43-
* @var object|null $icon_info
43+
* @var array|null $icon_info
4444
*/
45-
public ?object $icon_info = null;
45+
public ?array $icon_info = null;
4646

4747
/**
4848
* Resource messages.

src/Platform.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ class Platform
105105
/**
106106
* The tool proxy.
107107
*
108-
* @var object|null $toolProxy
108+
* @var string|null $toolProxy
109109
*/
110-
public ?object $toolProxy = null;
110+
public ?string $toolProxy = null;
111111

112112
/**
113113
* Platform GUID (as reported by first platform connection).

0 commit comments

Comments
 (0)