Switched coding standards indentation doc to tabs

This commit is contained in:
Hypolite Petovan 2016-10-22 23:01:54 -04:00
부모 894d2e569b
커밋 0eadc0bd51
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@ -49,9 +49,9 @@ Programming
###Coding standards
For the sake of consistency between contribution and general code readability, Friendica follows the widespread [PSR-2 coding standards](http://www.php-fig.org/psr/psr-2/).
Here's a few primers if you are new to the PSR-2 coding standards:
* Indentation is 4 spaces, period.
For the sake of consistency between contribution and general code readability, Friendica follows the widespread [PSR-2 coding standards](http://www.php-fig.org/psr/psr-2/) to the exception of a few rules.
Here's a few primers if you are new to Friendica or to the PSR-2 coding standards:
* Indentation is tabs, period (not PSR-2).
* By default, strings are enclosed in single quotes, but feel free to use double quotes if it makes more sense (SQL queries, adding tabs and line feeds).
* Operators are wrapped by spaces, e.g. `$var === true`, `$var = 1 + 2` and `'string' . $concat . 'enation'`
* Braces are mandatory in conditions