Skip to content

Commit af38450

Browse files
committed
remove todos
1 parent 05207a6 commit af38450

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

src/Ast/PhpVersion.php

-27
Original file line numberDiff line numberDiff line change
@@ -60,49 +60,22 @@ public function isPropertyTypeHintSupported(): bool
6060
return $this->isVersionGreaterThanOrEqualTo74();
6161
}
6262

63-
// @TODO check if being used otherwise remove
64-
public function isNamedArgumentSupported(): bool
65-
{
66-
return $this->isVersionGreaterThanOrEqualTo80();
67-
}
68-
69-
// @TODO check if being used otherwise remove
70-
public function isAttributesSupported(): bool
71-
{
72-
return $this->isVersionGreaterThanOrEqualTo80();
73-
}
7463

75-
// @TODO check if being used otherwise remove
7664
public function isConstructorPropertyPromotionSupported(): bool
7765
{
7866
return $this->isVersionGreaterThanOrEqualTo80();
7967
}
8068

81-
// @TODO check if being used otherwise remove
82-
public function isUnionTypesSupported(): bool
83-
{
84-
return $this->isVersionGreaterThanOrEqualTo80();
85-
}
86-
87-
// @TODO check if being used otherwise remove
8869
public function isMatchSupported(): bool
8970
{
9071
return $this->isVersionGreaterThanOrEqualTo80();
9172
}
9273

93-
// @TODO check if being used otherwise remove
9474
public function isNullSafeSupported(): bool
9575
{
9676
return $this->isVersionGreaterThanOrEqualTo80();
9777
}
9878

99-
// @TODO check if being used otherwise remove
100-
public function isCatchWithoutVariableSupported(): bool
101-
{
102-
return $this->isVersionGreaterThanOrEqualTo80();
103-
}
104-
105-
// @TODO check if being used otherwise remove
10679
public function isMixedTypehintSupported(): bool
10780
{
10881
return $this->isVersionGreaterThanOrEqualTo80();

0 commit comments

Comments
 (0)