Fix style issues

This commit is contained in:
Matt Brown 2020-10-19 12:16:28 -04:00
parent 62f9610a2a
commit a6f8112550
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ final class ContainerResolver
if (is_string($concrete)) {
// some of the path helpers actually return a string when being resolved
$concreteClass = $concrete;
} else if (is_object($concrete)) {
} elseif (is_object($concrete)) {
// normally we have an object resolved
$concreteClass = get_class($concrete);
} else {

View File

@ -51,7 +51,7 @@ final class AppReturnTypeProvider implements FunctionReturnTypeProviderInterface
StatementsSource $source,
string $fq_classlike_name,
string $method_name_lowercase,
array $call_args,
array $call_args,
Context $context,
CodeLocation $code_location,
?array $template_type_parameters = null,