diff --git a/Bridge_API/BridgeAbstract.html b/Bridge_API/BridgeAbstract.html index 76cef775..5d59baf1 100644 --- a/Bridge_API/BridgeAbstract.html +++ b/Bridge_API/BridgeAbstract.html @@ -100,7 +100,7 @@
This section explains the coding style policy for RSS-Bridge with examples and references to external resources. Please make sure your code is compliant before opening a pull request.
-You will automatically be notified if issues were found in your pull request. You must fix those issues before the pull request will be merged. Refer to phpcs.xml for a complete list of policies enforced by Travis-CI.
-If you want to run the checks locally, make sure you have phpcs
and phpunit
installed on your machine and run following commands in the root directory of RSS-Bridge (tested on Debian):
This section explains the coding style policy for RSS-Bridge with examples and references to external resources. +Please make sure your code is compliant before opening a pull request.
+You will automatically be notified if issues were found in your pull request. +You must fix those issues before the pull request will be merged. +Refer to phpcs.xml for a complete list of policies enforced by Travis-CI.
+If you want to run the checks locally, make sure you have
+phpcs
and
+phpunit
installed on your machine and run following commands in the root directory of RSS-Bridge (tested on Debian):
./vendor/bin/phpcs --standard=phpcs.xml --warning-severity=0 --extensions=php -p ./
./vendor/bin/phpunit
@@ -149,7 +154,7 @@
There is no maximum line length.
+180
PHP supports both single quote strings and double quote strings. For pure text you must use single quote strings for consistency. Double quote strings are only allowed for special characters (i.e. "\n"
) or inlined variables (i.e. "My name is {$name}"
);