From f017015d1edb311ca900e6a1d4f9df4091e5a1a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Isaert?= Date: Mon, 30 Nov 2020 14:50:40 +0100 Subject: [PATCH] fix: authorize string as key for datasets --- src/Datasets.php | 2 +- src/Factories/TestCaseFactory.php | 2 +- src/PendingObjects/TestCall.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Datasets.php b/src/Datasets.php index 8626332e..84b4ba72 100644 --- a/src/Datasets.php +++ b/src/Datasets.php @@ -51,7 +51,7 @@ final class Datasets /** * Resolves the current dataset to an array value. * - * @param Traversable|Closure|iterable|string|null $data + * @param Traversable|Closure|iterable|string|null $data * * @return array */ diff --git a/src/Factories/TestCaseFactory.php b/src/Factories/TestCaseFactory.php index 06a2a6fb..5b6c2167 100644 --- a/src/Factories/TestCaseFactory.php +++ b/src/Factories/TestCaseFactory.php @@ -59,7 +59,7 @@ final class TestCaseFactory /** * Holds the dataset, if any. * - * @var Closure|iterable|string|null + * @var Closure|iterable|string|null */ public $dataset; diff --git a/src/PendingObjects/TestCall.php b/src/PendingObjects/TestCall.php index 73f30548..afbec8e8 100644 --- a/src/PendingObjects/TestCall.php +++ b/src/PendingObjects/TestCall.php @@ -78,7 +78,7 @@ final class TestCall * Runs the current test multiple times with * each item of the given `iterable`. * - * @param \Closure|iterable|string $data + * @param \Closure|iterable|string $data */ public function with($data): TestCall {