Remove unused deprecated stuff

This commit is contained in:
Dylan K. Taylor
2025-08-24 23:29:55 +01:00
parent 36211a96c1
commit 1ebd7d3960
4 changed files with 2 additions and 40 deletions

View File

@@ -165,16 +165,6 @@ final class Utils{
return $reflect->getName();
}
/**
* @phpstan-return \Closure(object) : object
* @deprecated
*/
public static function cloneCallback() : \Closure{
return static function(object $o){
return clone $o;
};
}
/**
* @phpstan-template TKey of array-key
* @phpstan-template TValue of object