Skip to content

Commit b8c4da4

Browse files
committed
Check why Behat tests for some PHP versions are failing (and with lowest dependencies)
1 parent ef4731a commit b8c4da4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/Fixtures/TestBundle/Entity/DummyBoolean.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@ class DummyBoolean
3838
*/
3939
private $isDummyBoolean;
4040

41-
public function __construct(bool $isDummyBoolean)
42-
{
43-
$this->isDummyBoolean = $isDummyBoolean;
44-
}
45-
4641
public function getId()
4742
{
4843
return $this->id;
@@ -52,4 +47,9 @@ public function isDummyBoolean(): bool
5247
{
5348
return $this->isDummyBoolean;
5449
}
50+
51+
public function setIsDummyBoolean(bool $isDummyBoolean): void
52+
{
53+
$this->isDummyBoolean = $isDummyBoolean;
54+
}
5555
}

0 commit comments

Comments
 (0)