Skip to content

Commit 98dd286

Browse files
committed
Revert "Add @codeCoverageIgnore"
This reverts commit c9377b6.
1 parent c9377b6 commit 98dd286

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Tag/Base/NormalTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ abstract class NormalTag extends Tag
1313
{
1414
final public function __construct() {}
1515

16-
#[Deprecated('Use the constructor instead.')] // @codeCoverageIgnore
16+
#[Deprecated('Use the constructor instead.')]
1717
final public static function tag(): static
1818
{
1919
return new static();

src/Tag/Base/VoidTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ abstract class VoidTag extends Tag
1414
{
1515
final public function __construct() {}
1616

17-
#[Deprecated('Use the constructor instead.')] // @codeCoverageIgnore
17+
#[Deprecated('Use the constructor instead.')]
1818
final public static function tag(): static
1919
{
2020
return new static();

src/Tag/CustomTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function __construct(
5656
*
5757
* @psalm-param non-empty-string $name
5858
*/
59-
#[Deprecated('Use the constructor instead.')] // @codeCoverageIgnore
59+
#[Deprecated('Use the constructor instead.')]
6060
public static function name(string $name): self
6161
{
6262
return new self($name);

src/Widget/ButtonGroup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function __toString(): string
3535
return $this->render();
3636
}
3737

38-
#[Deprecated('Use the constructor instead.')] // @codeCoverageIgnore
38+
#[Deprecated('Use the constructor instead.')]
3939
public static function create(): self
4040
{
4141
return new self();

src/Widget/CheckboxList/CheckboxList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function __toString(): string
6363
return $this->render();
6464
}
6565

66-
#[Deprecated('Use the constructor instead.')] // @codeCoverageIgnore
66+
#[Deprecated('Use the constructor instead.')]
6767
public static function create(string $name): self
6868
{
6969
return new self($name);

src/Widget/RadioList/RadioList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function __toString(): string
5757
return $this->render();
5858
}
5959

60-
#[Deprecated('Use the constructor instead.')] // @codeCoverageIgnore
60+
#[Deprecated('Use the constructor instead.')]
6161
public static function create(string $name): self
6262
{
6363
return new self($name);

0 commit comments

Comments
 (0)