Browse Source

Merge branch '2.19' into 3.0

# Conflicts:
#	doc/custom_rules.rst
Dariusz Ruminski 3 years ago
parent
commit
1dc0f2133e
1 changed files with 4 additions and 4 deletions
  1. 4 4
      doc/custom_rules.rst

+ 4 - 4
doc/custom_rules.rst

@@ -6,7 +6,7 @@ If you need to enforce some specific code style rules, you can implement your
 own fixers.
 
 For each rule you want to add, create a class that implements
-`PhpCsFixer\\Fixer\\FixerInterface <./src/Fixer/FixerInterface.php>`_.
+`PhpCsFixer\\Fixer\\FixerInterface <../src/Fixer/FixerInterface.php>`_.
 Note that there is a specific constraint
 regarding custom rules names: they must match the pattern
 ``/^[A-Z][a-zA-Z0-9]*\/[a-z][a-z0-9_]*$/``.
@@ -32,6 +32,6 @@ Then register your custom fixers and enable them in the config file:
 
 There are several interfaces that your fixers can also implement if needed:
 
-* `PhpCsFixer\\Fixer\\WhitespacesAwareFixerInterface <./src/Fixer/WhitespacesAwareFixerInterface.php>`_: for fixers that need to know the configured indentation and line endings;
-* `PhpCsFixer\\Fixer\\ConfigurableFixerInterface <./src/Fixer/ConfigurableFixerInterface.php>`_: to create a configurable fixer;
-* `PhpCsFixer\\Fixer\\DeprecatedFixerInterface <./src/Fixer/DeprecatedFixerInterface.php>`_: to deprecate a fixer.
+* `PhpCsFixer\\Fixer\\WhitespacesAwareFixerInterface <../src/Fixer/WhitespacesAwareFixerInterface.php>`_: for fixers that need to know the configured indentation and line endings;
+* `PhpCsFixer\\Fixer\\ConfigurableFixerInterface <../src/Fixer/ConfigurableFixerInterface.php>`_: to create a configurable fixer;
+* `PhpCsFixer\\Fixer\\DeprecatedFixerInterface <../src/Fixer/DeprecatedFixerInterface.php>`_: to deprecate a fixer.