Method ReflectionParameter::getClass() 解決方法

helong3314發表於2021-05-09

Deprecated: Method ReflectionParameter::getClass() is deprecated in /Applications/MAMP/htdocs/tools/package/factory/ProductFactory.php on line 37

PHP8 放棄getClass()方法

$className = $depandency->getClass()->name; 

替換:

$className = $depandency->getType()->getName();
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章