Skip to content

Commit 90084d2

Browse files
committed
Fix typehints
1 parent 49f3ea1 commit 90084d2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Exception/IncompleteConfigurationException.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
class IncompleteConfigurationException extends Exception
88
{
99
/**
10-
* @var string
10+
* @var string|null
1111
*/
1212
private $subdomain;
1313

1414
/**
15-
* @var string
15+
* @var string|null
1616
*/
1717
private $connectionKey;
1818

@@ -24,12 +24,12 @@ public function __construct(
2424
$this->connectionKey = $connectionKey;
2525
}
2626

27-
public function getSubdomain(): string
27+
public function getSubdomain()
2828
{
2929
return $this->subdomain;
3030
}
3131

32-
public function getConnectionKey(): string
32+
public function getConnectionKey()
3333
{
3434
return $this->connectionKey;
3535
}

0 commit comments

Comments
 (0)