Skip to content

Instantly share code, notes, and snippets.

@joaorobertopb
Last active October 3, 2018 12:55
Show Gist options
  • Save joaorobertopb/56c2033ae1640dda80d47c97f5a4db34 to your computer and use it in GitHub Desktop.
Save joaorobertopb/56c2033ae1640dda80d47c97f5a4db34 to your computer and use it in GitHub Desktop.
Clean Code concepts - PHP Examples
<?php
$ymd = date('Y-m-d'); // Ruim
$currentDate = date('Y-m-d'); // Bom
/* Ruim */ var $d = 0; //quantidade de dias trabalhados
/* Bom */ var $workDays = 0;
//Ruim
foreach ($people as $p) {
echo $p->name;
}
//Bom
foreach ($people as $person) {
echo $person->name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment