I have an issue with my code and when I'm comparing the last working reversion with the current one, I see among other things this difference in the PhpStorm's debugging output:
working version
object = {MyNamespace\DataObject\ProtocolSetForProtocolServer} [3]
*MyNamespace\DataObject\ProtocolSet*id = null
*MyNamespace\DataObject\ProtocolSet*endpoint = null
*MyNamespace\DataObject\ProtocolSet*protocols = {Doctrine\Common\Collections\ArrayCollection} [1]
not working version
object = {MyNamespace\DataObject\ProtocolSetForProtocolServer} [3]
id = null
endpoint = null
protocols = {Doctrine\Common\Collections\ArrayCollection} [1]
What is the difference between *MyType*myProperty
and just myProperty
in the debugging output of PhpStorm?