Yeah under a 1000 isnt bad. Also it has to do with how you code. Theres all sorts of ways to cut number of lines in half without changing anything.
Example
PHP Code:
for(blah){
junk();
}
instead of
PHP Code:
for(blah)
{
junk();
}
cuts out 1 line. Its all how you liek to do it.