Skip to content

Instantly share code, notes, and snippets.

@buiquangduc
Last active October 9, 2017 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buiquangduc/e6402699976ed8a013da032a04b3cb9a to your computer and use it in GitHub Desktop.
Save buiquangduc/e6402699976ed8a013da032a04b3cb9a to your computer and use it in GitHub Desktop.
Routine with sequential cohesion
<?php
//Example of routine with sequential cohesion
function randomRoutineName($birthDate) {
// Calculate the age from the birth date
$currentAge = // Stuff to get current age from birth date
// Calculate the retirement time from the current age
$retirementTime = // Stuff to get retirement time from current age
}
// This routine is sequential cohesion because the last operation need to use the result of the previous operation to calculate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment