Subject: | ValuesAndExpressions::ProhibitLongChainsOfMethodCalls |
Found method-call chain of length 4. at line 171, column 5. Long chains
of method calls indicate code that is too tightly coupled. (Severity:
2) ( ValuesAndExpressions::ProhibitLongChainsOfMethodCalls )
$ grep -n . TT.pm | egrep '17[12]:'
171: $c->response->content_type( 'text/html; charset=utf-8' )
172: unless $c->response->content_type;
Is it counting those two method calls as one?