Skip to content

Commit 2326d60

Browse files
committed
Fix validation occurred
1 parent 901fb98 commit 2326d60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/JVM/Invoker/Invokable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ function ($argument) {
120120
*/
121121
$methodSignature = Formatter::buildArgumentsSignature($formattedArguments);
122122

123-
if ((!$this->options['validation']['method']['arguments_count_only'] ?? false)) {
123+
if (!($this->options['validation']['method']['arguments_count_only'] ?? false)) {
124124
if ($methodSignature === $convertedPassedArguments) {
125125
$method = $methodReference;
126126
break;

0 commit comments

Comments
 (0)