Indecipherable if conditional statement

Deprecated: mb_convert_encoding(): Handling HTML entities via mbstring is deprecated; use htmlspecialchars, htmlentities, or mb_encode_numericentity/mb_decode_numericentity instead in /opt/edoceo.com/www/vendor/erusev/parsedown-extra/ParsedownExtra.php on line 480

I our line of work we have loads of opportunities to work with/on other developers code.

Some style choices are amazing, here’s one jewel of an if conditional.

if ( $qtn_ct > 3 
  and $qnr_floor
  or $qtn_ct > 3
  and $wkl->incl_cell_ph_tf == 't'
  or  $qtn_ct > 3
  and $wkl->incl_email_tf == 't'
  or $wkl->incl_notes_tf == 't' ) {
    // Some Code
}

It’s a little hard to decipher with out some parenthesis to guide.

http://blog.edoceo.com/