Added some missing typehints

This commit is contained in:
Dylan K. Taylor
2018-06-10 17:18:55 +01:00
parent 89643ff9af
commit c4c6c58615
19 changed files with 27 additions and 27 deletions

View File

@ -569,7 +569,7 @@ class Utils{
*
* @return int
*/
public static function getReferenceCount($value, $includeCurrent = true){
public static function getReferenceCount($value, bool $includeCurrent = true){
ob_start();
debug_zval_dump($value);
$ret = explode("\n", ob_get_contents());