Skip to content

Commit a23e06d

Browse files
committed
TASK: Fix code coverage of BooleanType
1 parent 55c9ac0 commit a23e06d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/TypeSystem/Type/BooleanType/BooleanType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ final class BooleanType implements TypeInterface
3030

3131
private function __construct()
3232
{
33-
}
33+
} // @codeCoverageIgnore
3434

3535
public static function get(): self
3636
{

test/Unit/TypeSystem/Type/BooleanType/BooleanTypeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ public function isReturnsFalseIfGivenTypeIsNotBooleanType(): void
5151
{
5252
$this->assertFalse(BooleanType::get()->is(StringType::get()));
5353
}
54-
}
54+
}

0 commit comments

Comments
 (0)