diff --git a/src/content/daily-email/2023-04-19.md b/src/content/daily-email/2023-04-19.md index eb31a588..fa79de28 100644 --- a/src/content/daily-email/2023-04-19.md +++ b/src/content/daily-email/2023-04-19.md @@ -9,7 +9,7 @@ tags: - 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.