Skip to content

Commit 3158b26

Browse files
committed
add 'serp/google/finance_'
1 parent a70496c commit 3158b26

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/DFSClient/Entity/Typed/Abstracts/EntityWithType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
abstract class EntityWithType implements EntityWithTypeInterface
99
{
1010
/**
11-
* @var string $type
11+
* @var null|string $type
1212
*/
1313
public $type = null;
1414

15-
public function getType(): string
15+
public function getType(): ?string
1616
{
1717
return $this->type;
1818
}

src/DFSClient/Entity/Typed/Interfaces/EntityWithTypeInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
interface EntityWithTypeInterface
66
{
7-
public function getType(): string;
7+
public function getType(): ?string;
88
}

0 commit comments

Comments
 (0)