Skip to content

Instantly share code, notes, and snippets.

@nahidulhasan
Last active September 27, 2021 15:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nahidulhasan/d912e33567bc13d7ab8dcef1b0acb916 to your computer and use it in GitHub Desktop.
Save nahidulhasan/d912e33567bc13d7ab8dcef1b0acb916 to your computer and use it in GitHub Desktop.
<?php
abstract class AbstractClass
{
// Force Extending class to define this method
abstract protected function getValue();
public function printOut()
{
print $this->getValue() . "\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment