Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit 85ecf56

Browse files
author
Andrey Helldar
committed
Fixed doc-blocks
1 parent 8720f5e commit 85ecf56

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Support/Instance.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static function call(Throwable $object, string $method)
6767

6868
/**
6969
* @param Throwable $object
70-
* @param array[] $methods
70+
* @param string[] $methods
7171
*
7272
* @return mixed
7373
*/
@@ -83,7 +83,7 @@ public static function callsWhenNotEmpty(Throwable $object, $methods)
8383
}
8484

8585
/**
86-
* @param mixed $value
86+
* @param object|string $value
8787
*
8888
* @return bool
8989
*/
@@ -93,11 +93,11 @@ protected static function isExistsObject($value): bool
9393
}
9494

9595
/**
96-
* @param mixed $value
96+
* @param mixed $class
9797
*
9898
* @return bool
9999
*/
100-
protected static function isClassExists($class): bool
100+
protected static function isClassExists($class = null): bool
101101
{
102102
return is_string($class) && class_exists($class);
103103
}

0 commit comments

Comments
 (0)