From 9bf141f698169839761ff32628ac2175b37ea277 Mon Sep 17 00:00:00 2001 From: jordanbrauer <18744334+jordanbrauer@users.noreply.github.com> Date: Wed, 16 Jun 2021 00:54:22 -0500 Subject: [PATCH] style: formatting & linting --- src/Exceptions/DatasetMissing.php | 2 +- src/Support/Reflection.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Exceptions/DatasetMissing.php b/src/Exceptions/DatasetMissing.php index 5613d02e..b8f0cb2d 100644 --- a/src/Exceptions/DatasetMissing.php +++ b/src/Exceptions/DatasetMissing.php @@ -10,7 +10,7 @@ use NunoMaduro\Collision\Contracts\RenderlessTrace; use Symfony\Component\Console\Exception\ExceptionInterface; /** - * Creates a new instance of dataset is not present for test that has arguments + * Creates a new instance of dataset is not present for test that has arguments. * * @internal */ diff --git a/src/Support/Reflection.php b/src/Support/Reflection.php index 1fac05b7..8fdd08fd 100644 --- a/src/Support/Reflection.php +++ b/src/Support/Reflection.php @@ -162,7 +162,7 @@ final class Reflection public static function getFunctionArguments(Closure $function): array { $parameters = (new ReflectionFunction($function))->getParameters(); - $arguments = []; + $arguments = []; foreach ($parameters as $parameter) { $arguments[$parameter->getName()] = ($parameter->hasType()) ? $parameter->getType() : 'mixed';