Reply to thread

I don't like typing, so I always use as much shorthand as I can while keeping my code readable


I try to avoid

[php]if($a == $b) massiveFunction($input,$output,$variable); else reallyMassiveObject->longFunction($a,$b,$c,input);[/php]


Cause it's impossible for me to skim read it :)


Back
Top Bottom