1*572dd708SAndreas Gohr# This file is for unifying the coding style for different editors and IDEs 2*572dd708SAndreas Gohr# editorconfig.org 3*572dd708SAndreas Gohr 4*572dd708SAndreas Gohr# PHP PSR-2 Coding Standards 5*572dd708SAndreas Gohr# http://www.php-fig.org/psr/psr-2/ 6*572dd708SAndreas Gohr 7*572dd708SAndreas Gohrroot = true 8*572dd708SAndreas Gohr 9*572dd708SAndreas Gohr[*.php] 10*572dd708SAndreas Gohrcharset = utf-8 11*572dd708SAndreas Gohrend_of_line = lf 12*572dd708SAndreas Gohrinsert_final_newline = true 13*572dd708SAndreas Gohrtrim_trailing_whitespace = true 14*572dd708SAndreas Gohrindent_style = space 15*572dd708SAndreas Gohrindent_size = 4 16*572dd708SAndreas Gohr 17