Skip to content

Commit 738cc63

Browse files
chore[php-8.4]: revert enforcing strict type on 'Admin\Task\Task::'
1 parent 82d1a3f commit 738cc63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Admin/Task/Task.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Task implements EntityInterface
2727
*
2828
* @var string
2929
*/
30-
protected string $id;
30+
protected $id;
3131

3232
/**
3333
* Task type.

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function loadEnvironment(): void
3535
* @throws \GuzzleHttp\Exception\GuzzleException
3636
* @throws \ReflectionException
3737
*/
38-
public function getConnectionObject(MockHandler $mock = null): Connection
38+
public function getConnectionObject(?MockHandler $mock = null): Connection
3939
{
4040
$connection = new Connection([
4141
'username' => $_ENV['ARANGODB_USERNAME'],

0 commit comments

Comments
 (0)