I have a Symfony application configured with Doctrine, and I have designed a one-to-many relationship between two models: a Item belongs to a Customer, which is an alias for sfGuardUser.
Let's say that there are certain situations where an item does not have any customer. To test this I'm trying to make this comparison:
$customer = $this->getCustomer();
if ( $customer ) {
return $customer->getNbInvoices();
}
else {
return 'n/a';
}
However $this->getCustomer() does not return null or any other 'false' value to compare with, and the foreign key is set to NULL in the database.
How can I compare an object that does not store an actual value in the database?