semicolon_after_instruction.rst 579 B

123456789101112131415161718192021222324252627282930
  1. ====================================
  2. Rule ``semicolon_after_instruction``
  3. ====================================
  4. Instructions must be terminated with a semicolon.
  5. Examples
  6. --------
  7. Example #1
  8. ~~~~~~~~~~
  9. .. code-block:: diff
  10. --- Original
  11. +++ New
  12. @@ -1 +1 @@
  13. -<?php echo 1 ?>
  14. +<?php echo 1; ?>
  15. Rule sets
  16. ---------
  17. The rule is part of the following rule sets:
  18. @Symfony
  19. Using the ``@Symfony`` rule set will enable the ``semicolon_after_instruction`` rule.
  20. @PhpCsFixer
  21. Using the ``@PhpCsFixer`` rule set will enable the ``semicolon_after_instruction`` rule.