Setting indent in Emacs

(written by Lawrence Krubner, however indented passages are often quotes)

Since the Symfony framework defaults to using spaces for tabs, I suspect I will often need to remind myself how to set the spacing of tabs:

(setq-default indent-tabs-mode nil)
(setq-default tab-width 4)
(setq indent-line-function ‘insert-tab)

Source