Skip to content

Commit ec5811f

Browse files
committed
Finalize
1 parent 48ea57b commit ec5811f

File tree

3 files changed

+0
-24
lines changed

3 files changed

+0
-24
lines changed

src/Psalm/Plugin/EventHandler/Event/DynamicFunctionStorageProviderEvent.php

-8
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,4 @@ public function __construct(
2727
public readonly CodeLocation $code_location,
2828
) {
2929
}
30-
31-
/**
32-
* @return list<PhpParser\Node\Arg>
33-
*/
34-
public function getArgs(): array
35-
{
36-
return $this->func_call->getArgs();
37-
}
3830
}

src/Psalm/Plugin/EventHandler/Event/FunctionReturnTypeProviderEvent.php

-8
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,4 @@ public function __construct(
2828
public readonly CodeLocation $code_location,
2929
) {
3030
}
31-
32-
/**
33-
* @return list<PhpParser\Node\Arg>
34-
*/
35-
public function getCallArgs(): array
36-
{
37-
return $this->stmt->getArgs();
38-
}
3931
}

src/Psalm/Plugin/EventHandler/Event/MethodReturnTypeProviderEvent.php

-8
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,4 @@ public function __construct(
3434
public readonly ?string $called_method_name_lowercase = null,
3535
) {
3636
}
37-
38-
/**
39-
* @return list<PhpParser\Node\Arg>
40-
*/
41-
public function getCallArgs(): array
42-
{
43-
return $this->stmt->getArgs();
44-
}
4537
}

0 commit comments

Comments
 (0)