Skip to content

Commit 4bb6687

Browse files
committed
ParamsChecker fix
1 parent 78ad81b commit 4bb6687

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ParamsChecker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public static function __callStatic($name, $arguments)
9393
public static function types(string $parameter, &$value, array $types, ?string $methodOrFunction = null)
9494
{
9595
self::notWhiteSpaceOrNullString('$parameter', $parameter, __METHOD__);
96-
self::isNotEmptyArray('$types', $types, __METHOD__, __CLASS__);
96+
self::isNotEmptyArray('$types', $types, __METHOD__);
9797
$success = false;
9898
foreach ($types as $type)
9999
{

0 commit comments

Comments
 (0)