Skip to content

Instantly share code, notes, and snippets.

@andipyk
Created May 12, 2024 10:12
Show Gist options
  • Save andipyk/1f2ff213b3e66e753d2ffec30dedaf7d to your computer and use it in GitHub Desktop.
Save andipyk/1f2ff213b3e66e753d2ffec30dedaf7d to your computer and use it in GitHub Desktop.
<?php
class BaseClass {
public function showMessage() {
return "Base message";
}
}
class DerivedClass extends BaseClass {
#[\Override]
public function showMessage() {
// Explicitly overriding to provide a different message.
return "Derived message";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment