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';