I saw this piece of code into one project that I started to work and I find it a bit difficult to understand what really this statement does, the following is the code:
private function _idMatches() {
return $this->_id ? $this->_id == $this->_organization->getId() : false;
}
Well this is suppose to check if some id matches but I'm just maybe not used to write this shortcut code in php and would like to know if someone can break it down and explain this statement.