|
@@ -12,13 +12,13 @@ print valid PHP code. It does all transformations in multiple passes,
|
|
|
a.k.a., multi-pass compiler.
|
|
|
|
|
|
Therefore, a new fixer is meant to be ideally
|
|
|
-[idempotent](http://en.wikipedia.org/wiki/Idempotence#Computer_science_meaning),
|
|
|
+[idempotent](https://en.wikipedia.org/wiki/Idempotence#Computer_science_meaning),
|
|
|
or at least atomic in its actions. More on this later.
|
|
|
|
|
|
All contributions go through a code review process. Do not feel
|
|
|
discouraged - it is meant only to give more people more chance to
|
|
|
contribute, and to detect bugs ([Linus'
|
|
|
-Law](http://en.wikipedia.org/wiki/Linus%27s_Law)).
|
|
|
+Law](https://en.wikipedia.org/wiki/Linus%27s_Law)).
|
|
|
|
|
|
If possible, try to get acquainted with the public interface for the
|
|
|
[Tokens class](/src/Tokenizer/Tokens.php)
|
|
@@ -302,7 +302,7 @@ one of them check if they are preceded by a semicolon symbol.
|
|
|
|
|
|
Now you need to do some reading, because all these symbols obey a list
|
|
|
defined by the PHP compiler. It is the ["List of Parser
|
|
|
-Tokens"](http://php.net/manual/en/tokens.php).
|
|
|
+Tokens"](https://php.net/manual/en/tokens.php).
|
|
|
|
|
|
Internally, PHP CS Fixer transforms some of PHP native tokens into custom
|
|
|
tokens through the use of [Transfomers](/src/Tokenizer/Transformer),
|