| 1 | <?php |
||
| 22 | class ObjectHelper { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Determines if a value is an object. |
||
| 26 | * |
||
| 27 | * @param mixed $value The value. |
||
| 28 | * @return void |
||
| 29 | * @throws ObjectArgumentException Throws an Object argument exception if the value is not of expected type. |
||
| 30 | */ |
||
| 31 | public static function isObject($value): void { |
||
| 36 | } |
||
| 37 |