Skip to content

Instantly share code, notes, and snippets.

@syofyanzuhad
Forked from nahidulhasan/abstarct.php
Created September 27, 2021 15:29
Show Gist options
  • Save syofyanzuhad/b01b07b782a99655f1ea242136cc5bc7 to your computer and use it in GitHub Desktop.
Save syofyanzuhad/b01b07b782a99655f1ea242136cc5bc7 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