lowercase_constants.rst 503 B

12345678910111213141516171819202122232425262728
  1. ============================
  2. Rule ``lowercase_constants``
  3. ============================
  4. .. warning:: This rule is deprecated and will be removed on next major version.
  5. You should use ``constant_case`` instead.
  6. The PHP constants ``true``, ``false``, and ``null`` MUST be in lower case.
  7. Examples
  8. --------
  9. Example #1
  10. ~~~~~~~~~~
  11. .. code-block:: diff
  12. --- Original
  13. +++ New
  14. @@ -1,4 +1,4 @@
  15. <?php
  16. -$a = FALSE;
  17. -$b = True;
  18. -$c = nuLL;
  19. +$a = false;
  20. +$b = true;
  21. +$c = null;