Changyan_Synchronizer::cmtDescend PHP Method

cmtDescend() private method

This is a comparation function used by usort in function insertComments()
private cmtDescend ( $x, $y )
    private function cmtDescend($x, $y)
    {
        return intval($x->create_time) > intval($y->create_time) ? -1 : 1;
    }