]> git.mxchange.org Git - friendica.git/commitdiff
Switched coding standards indentation doc to tabs
authorHypolite Petovan <ben.lort@gmail.com>
Sun, 23 Oct 2016 03:01:54 +0000 (23:01 -0400)
committerHypolite Petovan <ben.lort@gmail.com>
Sun, 23 Oct 2016 03:01:54 +0000 (23:01 -0400)
doc/Developers-Intro.md

index 53981d0c298c8f7dd4760863822f1f373539bd2c..9cc5301631e8ee9c23949623962818eadf0a954a 100644 (file)
@@ -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