From cf471db7a29dd0320ec92ced4a7bd084e067fbe3 Mon Sep 17 00:00:00 2001 From: dverkade Date: Sat, 13 May 2017 11:28:44 +0200 Subject: [PATCH] Fixed typo Fixed a typo in an exception message, --- src/Generator/ParameterGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/ParameterGenerator.php b/src/Generator/ParameterGenerator.php index f5f2bc2a..0ff71fab 100644 --- a/src/Generator/ParameterGenerator.php +++ b/src/Generator/ParameterGenerator.php @@ -97,7 +97,7 @@ public static function fromArray(array $array) { if (!isset($array['name'])) { throw new Exception\InvalidArgumentException( - 'Paramerer generator requires that a name is provided for this object' + 'Parameter generator requires that a name is provided for this object' ); }