@@ -31,7 +31,7 @@ public function setNormalizer(string $option, \Closure $normalizer): static
3131 {
3232 try {
3333 parent ::setNormalizer ($ option , $ normalizer );
34- } catch (UndefinedOptionsException $ e ) {
34+ } catch (UndefinedOptionsException ) {
3535 $ this ->undefined [$ option ] = true ;
3636 }
3737
@@ -45,7 +45,7 @@ public function setAllowedValues(string $option, mixed $allowedValues): static
4545 {
4646 try {
4747 parent ::setAllowedValues ($ option , $ allowedValues );
48- } catch (UndefinedOptionsException $ e ) {
48+ } catch (UndefinedOptionsException ) {
4949 $ this ->undefined [$ option ] = true ;
5050 }
5151
@@ -59,7 +59,7 @@ public function addAllowedValues(string $option, mixed $allowedValues): static
5959 {
6060 try {
6161 parent ::addAllowedValues ($ option , $ allowedValues );
62- } catch (UndefinedOptionsException $ e ) {
62+ } catch (UndefinedOptionsException ) {
6363 $ this ->undefined [$ option ] = true ;
6464 }
6565
@@ -75,7 +75,7 @@ public function setAllowedTypes(string $option, $allowedTypes): static
7575 {
7676 try {
7777 parent ::setAllowedTypes ($ option , $ allowedTypes );
78- } catch (UndefinedOptionsException $ e ) {
78+ } catch (UndefinedOptionsException ) {
7979 $ this ->undefined [$ option ] = true ;
8080 }
8181
@@ -91,7 +91,7 @@ public function addAllowedTypes(string $option, $allowedTypes): static
9191 {
9292 try {
9393 parent ::addAllowedTypes ($ option , $ allowedTypes );
94- } catch (UndefinedOptionsException $ e ) {
94+ } catch (UndefinedOptionsException ) {
9595 $ this ->undefined [$ option ] = true ;
9696 }
9797
0 commit comments