123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535 |
- ==============================================
- Cookbook - Making a new Fixer for PHP CS Fixer
- ==============================================
- You want to make a new fixer to PHP CS Fixer and do not know how to
- start. Follow this document and you will be able to do it.
- Background
- ----------
- In order to be able to create a new fixer, you need some background.
- PHP CS Fixer is a transcompiler which takes valid PHP code and pretty
- 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_, 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's Law`_).
- If possible, try to get acquainted with the public interface for the
- `Tokens class`_ and `Token class`_ classes.
- Assumptions
- -----------
- * You are familiar with Test Driven Development.
- * Forked PHP-CS-Fixer/PHP-CS-Fixer into your own GitHub Account.
- * Cloned your forked repository locally.
- * Installed the dependencies of PHP CS Fixer using Composer_.
- * You have read `CONTRIBUTING.md`_.
- Step by step
- ------------
- For this step-by-step, we are going to create a simple fixer that
- removes all comments from the code that are preceded by ``;`` (semicolon).
- We are calling it ``remove_comments`` (code name), or,
- ``RemoveCommentsFixer`` (class name).
- Step 1 - Creating files
- _______________________
- Create a new file in ``src/Fixer/Comment/RemoveCommentsFixer.php``.
- Put this content inside:
- .. code-block:: php
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Fixer\Comment;
- use PhpCsFixer\AbstractFixer;
- use PhpCsFixer\FixerDefinition\FixerDefinition;
- use PhpCsFixer\Tokenizer\Tokens;
- /**
- * @author Your name <your@email.com>
- */
- final class RemoveCommentsFixer extends AbstractFixer
- {
- public function getDefinition(): FixerDefinition
- {
- // Return a definition of the fixer, it will be used in the documentation.
- }
- public function isCandidate(Tokens $tokens): bool
- {
- // Check whether the collection is a candidate for fixing.
- // Has to be ultra cheap to execute.
- }
- protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
- {
- // Add the fixing logic of the fixer here.
- }
- }
- Note how the class and file name match. Also keep in mind that all
- fixers must implement ``Fixer\FixerInterface``. In this case, the fixer is
- inheriting from ``AbstractFixer``, which fulfills the interface with some
- default behavior.
- Now let us create the test file at
- ``tests/Fixer/Comment/RemoveCommentsFixerTest.php``. Put this content inside:
- .. code-block:: php
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\Fixer\Comment;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author Your name <your@email.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\Comment\RemoveCommentsFixer
- */
- final class RemoveCommentsFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- public static function provideFixCases()
- {
- return [];
- }
- }
- Step 2 - Using tests to define fixers behavior
- ______________________________________________
- Now that the files are created, you can start writing tests to define the
- behavior of the fixer. You have to do it in two ways: first, ensuring
- the fixer changes what it should be changing; second, ensuring that
- fixer does not change what is not supposed to change. Thus:
- Keeping things as they are:
- .. code-block:: php
- <?php
- // tests/Fixer/Comment/RemoveCommentsFixerTest.php
- // ...
- public static function provideFixCases()
- {
- return [
- ['<?php echo "This should not be changed";'], // Each sub-array is a test
- ];
- }
- // ...
- Ensuring things change:
- .. code-block:: php
- <?php
- // tests/Fixer/Comment/RemoveCommentsFixerTest.php
- // ...
- public static function provideFixCases()
- {
- return [
- [
- '<?php echo "This should be changed"; ', // This is expected output
- '<?php echo "This should be changed"; /* Comment */', // This is input
- ],
- ];
- }
- // ...
- Note that expected outputs are **always** tested alone to ensure your fixer will not change it.
- We want to have a failing test to start with, so the test file now looks
- like:
- .. code-block:: php
- <?php
- // tests/Fixer/Comment/RemoveCommentsFixerTest.php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\Fixer\Comment;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author Your name <your@email.com>
- *
- * @internal
- */
- final class RemoveCommentsFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- public static function provideFixCases()
- {
- return [
- [
- '<?php echo "This should be changed"; ', // This is expected output
- '<?php echo "This should be changed"; /* Comment */', // This is input
- ],
- ];
- }
- }
- Step 3 - Implement your solution
- ________________________________
- You have defined the behavior of your fixer in tests. Now it is time to
- implement it.
- First, we need to create one method to describe what this fixer does:
- .. code-block:: php
- <?php
- // src/Fixer/Comment/RemoveCommentsFixer.php
- final class RemoveCommentsFixer extends AbstractFixer
- {
- public function getDefinition(): FixerDefinition
- {
- return new FixerDefinition(
- 'Removes all comments of the code that are preceded by `;` (semicolon).', // Trailing dot is important. We thrive to use English grammar properly.
- [
- new CodeSample(
- "<?php echo 123; /* Comment */\n"
- ),
- ]
- );
- }
- }
- Next, we need to update the documentation.
- Fortunately, PHP CS Fixer can help you here.
- Execute the following command in your command shell:
- .. code-block:: console
- php dev-tools/doc.php
- Next, we must filter what type of tokens we want to fix. Here, we are interested in code that contains ``T_COMMENT`` tokens:
- .. code-block:: php
- <?php
- // src/Fixer/Comment/RemoveCommentsFixer.php
- final class RemoveCommentsFixer extends AbstractFixer
- {
- // ...
- public function isCandidate(Tokens $tokens): bool
- {
- return $tokens->isTokenKindFound(T_COMMENT);
- }
- }
- For now, let us just make a fixer that applies no modification:
- .. code-block:: php
- <?php
- // src/Fixer/Comment/RemoveCommentsFixer.php
- final class RemoveCommentsFixer extends AbstractFixer
- {
- // ...
- protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
- {
- // no action
- }
- }
- Run ``phpunit tests/Fixer/Comment/RemoveCommentsFixerTest.php``.
- You are going to see that the tests fail.
- Break
- _____
- Now we have pretty much a cradle to work with. A file with a failing
- test, and the fixer, that for now does not do anything.
- How do fixers work? In the PHP CS Fixer, they work by iterating through
- pieces of codes (each being a Token), and inspecting what exists before
- and after that bit and making a decision, usually:
- * Adding code.
- * Modifying code.
- * Deleting code.
- * Ignoring code.
- In our case, we want to find all comments, and foreach (pun intended)
- 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`_.
- Internally, PHP CS Fixer transforms some of PHP native tokens into custom
- tokens through the use of Transformers_, they aim to help you reason about the
- changes you may want to do in the fixers.
- So we can get to move forward, humor me in believing that comments have
- one symbol name: ``T_COMMENT``.
- Step 3 - Implement your solution - continuation.
- ________________________________________________
- We do not want all symbols to be analysed. Only ``T_COMMENT``. So let us
- iterate the token(s) we are interested in.
- .. code-block:: php
- <?php
- // src/Fixer/Comment/RemoveCommentsFixer.php
- final class RemoveCommentsFixer extends AbstractFixer
- {
- // ...
- protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
- {
- foreach ($tokens as $index => $token) {
- if (!$token->isGivenKind(T_COMMENT)) {
- continue;
- }
- // need to figure out what to do here!
- }
- }
- }
- OK, now for each ``T_COMMENT``, all we need to do is check if the previous
- token is a semicolon.
- .. code-block:: php
- <?php
- // src/Fixer/Comment/RemoveCommentsFixer.php
- final class RemoveCommentsFixer extends AbstractFixer
- {
- // ...
- protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
- {
- foreach ($tokens as $index => $token) {
- if (!$token->isGivenKind(T_COMMENT)) {
- continue;
- }
- $prevTokenIndex = $tokens->getPrevMeaningfulToken($index);
- $prevToken = $tokens[$prevTokenIndex];
- if ($prevToken->equals(';')) {
- $tokens->clearAt($index);
- }
- }
- }
- }
- So the fixer in the end looks like this:
- .. code-block:: php
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Fixer\Comment;
- use PhpCsFixer\AbstractFixer;
- use PhpCsFixer\FixerDefinition\CodeSample;
- use PhpCsFixer\FixerDefinition\FixerDefinition;
- use PhpCsFixer\Tokenizer\Tokens;
- /**
- * @author Your name <your@email.com>
- */
- final class RemoveCommentsFixer extends AbstractFixer
- {
- public function getDefinition(): FixerDefinition
- {
- return new FixerDefinition(
- 'Removes all comments of the code that are preceded by `;` (semicolon).', // Trailing dot is important. We thrive to use English grammar properly.
- [
- new CodeSample(
- "<?php echo 123; /* Comment */\n"
- ),
- ]
- );
- }
- public function isCandidate(Tokens $tokens): bool
- {
- return $tokens->isTokenKindFound(T_COMMENT);
- }
- protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
- {
- foreach ($tokens as $index => $token) {
- if (!$token->isGivenKind(T_COMMENT)) {
- continue;
- }
- $prevTokenIndex = $tokens->getPrevMeaningfulToken($index);
- $prevToken = $tokens[$prevTokenIndex];
- if ($prevToken->equals(';')) {
- $tokens->clearAt($index);
- }
- }
- }
- }
- Step 4 - Format, Commit, PR.
- ____________________________
- Note that so far, we have not coded adhering to PSR-1/2. This is done on
- purpose. For every commit you make, you must use PHP CS Fixer to fix
- itself. Thus, on the command line call:
- .. code-block:: console
- php php-cs-fixer fix
- This will fix all the coding style mistakes.
- After the final CS fix, you are ready to commit. Do it.
- Now, go to GitHub and open a Pull Request.
- Step 5 - Peer review: it is all about code and community building.
- __________________________________________________________________
- Congratulations, you have made your first fixer. Be proud. Your work
- will be reviewed carefully by PHP CS Fixer community.
- The review usually flows like this:
- 1. People will check your code for common mistakes and logical
- caveats. Usually, the person building a fixer is blind about some
- behavior mistakes of fixers. Expect to write few more tests to cater for
- the reviews.
- 2. People will discuss the relevance of your fixer. If it is
- something that goes along with Symfony style standards, or PSR-1/PSR-2
- standards, they will ask you to add it to existing ruleset.
- 3. People will also discuss whether your fixer is idempotent or not.
- If they understand that your fixer must always run before or after a
- certain fixer, they will ask you to override a method named
- ``getPriority()``. Do not be afraid of asking the reviewer for help on how
- to do it.
- 4. People may ask you to rebase your code to unify commits or to get
- rid of merge commits.
- 5. Go to 1 until no actions are needed anymore.
- Your fixer will be incorporated in the next release.
- Congratulations! You have done it.
- Q&A
- ---
- Why is not my PR merged yet?
- PHP CS Fixer is used by many people, that expect it to be stable. So
- sometimes, few PR are delayed a bit so to avoid cluttering at @dev
- channel on composer.
- Other possibility is that reviewers are giving time to other members of
- PHP CS Fixer community to partake on the review debates of your fixer.
- In any case, we care a lot about what you do and we want to see it being
- part of the application as soon as possible.
- Why am I asked to use ``getPrevMeaningfulToken()`` instead of ``getPrevNonWhitespace()``?
- The main difference is that ``getPrevNonWhitespace()`` ignores only
- whitespaces (``T_WHITESPACE``), while ``getPrevMeaningfulToken()`` ignores
- whitespaces and comments. And usually that is what you want. For
- example:
- .. code-block:: php
- $a->/*comment*/func();
- If you are inspecting ``func()``, and you want to check whether this is
- part of an object, if you use ``getPrevNonWhitespace()`` you are going to
- get ``/*comment*/``, which might belie your test. On the other hand, if
- you use ``getPrevMeaningfulToken()``, no matter if you have got a comment
- or a whitespace, the returned token will always be ``->``.
- .. _Composer: https://getcomposer.org
- .. _CONTRIBUTING.md: ./../CONTRIBUTING.md
- .. _idempotent: https://en.wikipedia.org/wiki/Idempotence#Computer_science_meaning
- .. _Linus's Law: https://en.wikipedia.org/wiki/Linus%27s_Law
- .. _List of Parser Tokens: https://php.net/manual/en/tokens.php
- .. _Token class: ./../src/Tokenizer/Token.php
- .. _Tokens class: ./../src/Tokenizer/Tokens.php
- .. _Transformers: ./../src/Tokenizer/Transformer
|