encoding.rst 664 B

1234567891011121314151617181920212223242526272829303132333435
  1. =================
  2. Rule ``encoding``
  3. =================
  4. PHP code MUST use only UTF-8 without BOM (remove BOM).
  5. Examples
  6. --------
  7. Example #1
  8. ~~~~~~~~~~
  9. .. code-block:: diff
  10. --- Original
  11. +++ New
  12. -<?php
  13. +<?php
  14. echo "Hello!";
  15. Rule sets
  16. ---------
  17. The rule is part of the following rule sets:
  18. - `@PER <./../../ruleSets/PER.rst>`_
  19. - `@PER-CS1.0 <./../../ruleSets/PER-CS1.0.rst>`_
  20. - `@PER-CS2.0 <./../../ruleSets/PER-CS2.0.rst>`_
  21. - `@PSR1 <./../../ruleSets/PSR1.rst>`_
  22. - `@PSR2 <./../../ruleSets/PSR2.rst>`_
  23. - `@PSR12 <./../../ruleSets/PSR12.rst>`_
  24. - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
  25. - `@Symfony <./../../ruleSets/Symfony.rst>`_