Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Description
This issue is created automatically through a Github pull request on behalf of touki653:
Url: https://github.com/doctrine/common/pull/204
Message:
Fixed an (obviously) over used function which were calling [method_exists](http://php.net/method_exists) function the wrong way.
In `Doctrine\Common\Util\Debug::toString($obj)`
From `method_exists('__toString',$obj)`
To `method_exists($obj,'__toString')`