How do you ensure that you don't get a "Call to a member function on a non object" fatal ?
Fox example, I often have something like this in my templates: (which I find very convenient and readable):
<?php echo $object->getRelatedObject()->getProperty()->formatProperty() ?>
However, this will work only if each method returns an object of correct class. But it is not always the case. Related object may not be present in the database, so it returns null and you are faced with a fatal error. Then you go and manually check the return values:
<?php if (is_object($object->getRelatedObject()) && is_object($object->getRelatedObject()->getProperty())):
<?php echo $object->getRelatedObject()->getPreperty()->formatProperty() ?>
<?php endif; ?>
But this isn't so readable anymore. How do you address this problem?