chore: style changes

This commit is contained in:
Nuno Maduro
2023-03-21 13:42:21 +00:00
parent f4d19c90d3
commit 236a9bd7ce
3 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ final class Reflection
}
if (is_callable($method)) {
return static::bindCallable($method, $args);
return self::bindCallable($method, $args);
}
throw $exception;
@ -72,7 +72,7 @@ final class Reflection
return $test instanceof \PHPUnit\Framework\TestCase
? Closure::fromCallable($callable)->bindTo($test)(...$test->providedData())
: static::bindCallable($callable);
: self::bindCallable($callable);
}
/**