daily-email: fix link

This commit is contained in:
Oliver Davies 2023-04-19 23:54:51 +01:00
parent 1c3c355dba
commit bf6d50bb61

View file

@ -9,7 +9,7 @@ tags:
- php - php
--- ---
For some time, [Drupal's PHP coding standards[(https://www.drupal.org/docs/develop/standards/php/php-coding-standards#s-functions-and-variables) allows for writing variables in either snake-case (e.g. `$my_variable`) or lower camel-case `(e.g. $myVariable)`. For some time, [Drupal's PHP coding standards](https://www.drupal.org/docs/develop/standards/php/php-coding-standards#s-functions-and-variables) allows for writing variables in either snake-case (e.g. `$my_variable`) or lower camel-case (`e.g. $myVariable`).
It originally only allowed for snake-case variable names but once it accepted both, I switched to camel-case as my default. It originally only allowed for snake-case variable names but once it accepted both, I switched to camel-case as my default.