File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff 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 ();
Original file line number Diff line number Diff 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 ();
Original file line number Diff line number Diff 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 );
Original file line number Diff line number Diff 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 ();
Original file line number Diff line number Diff 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 );
Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments