Skip to content

Instantly share code, notes, and snippets.

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/7f5c09034e983534ba528e94b634bfb8 to your computer and use it in GitHub Desktop.
Save buiquangduc/7f5c09034e983534ba528e94b634bfb8 to your computer and use it in GitHub Desktop.
Routine name use a strong verb in OO language
<?php
$document = new Document(1) // Get the document with ID = 1
// Example of routine name use a strong verb in object-oriented language
$document->print();
$document->send();
$document->delete();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment