While writing down some basic definitions for my thesis I noticed that the Local Truncation Error (LTE), and, therefore, consistency, is defined only for explicit numerical integration methods. Take wikipedia as an example but on my reference book (Quarteroni Sacco Saleri, Numerical Mathematics) and over the web I couldn't find an analogus for implicit methods.
My reference book says that for an explicit method of the form $$ u_{n+1} = u_n + h\,\Phi(t_n, u_n, f_n, h), $$ having $f_n=f(t_n, u_n)$, and $u_n$ the $n$-th numerical approximation. Assuming we got the exact solution $y(t)$, with $y_n=y(t_n)$ we can write: $$ y_{n+1} = y_n + h\,\Phi(t_n, y_n, f(t_n, y_n), h) + \varepsilon_{n+1}, $$ where $\varepsilon_{n+1}$ is the residual error generating in $t_{n+1}$. Thus we can write $\varepsilon_{n+1} = h\,\tau_{n+1}(h)$ and we can define $\tau_{n+1}(h)$ as the LTE, and iff $\tau_{n+1}(h)\to0$ for $h\to0$ the method is consistent.
Could there be an analogus for a generical implicit method? My guess is that every implicit method has got its own definition for the LTE.
Also for implicit one-step methods you can write the step as $$ u_{n+1} = u_n + h\,\Phi_f(t_n, u_n, h), $$ as the next value is computed, via the implicit solver, from $t_n, u_n$ and $h$. For $h$ small enough the implicit equations of the stages satisfy, usually as system, the conditions of the implicit function theorem. Thus there is, for $(t_n,u_n)$ fixed, a solution $$h\mapsto k_i(h)~\text{ to }~~k_i(h)=f(t_n+c_ih,u_n+h[a_{i1}k_1(h)+...+a_{is}k_s(h)])$$ that is as smooth as $f$, and $$u_{n+1}=u_n+h[b_1k_1(h)+...+b_sk_s(h)]$$ has the above form.
It makes little sense to include $f_n$ in the arguments of $Φ$, as most one-step methods use more slopes in the computation of the step. $f$ and the coefficients of the method are global parameters of $Φ_f$, a different method or a different function will give a different propagator $Φ_f$.