Skip to content

Instantly share code, notes, and snippets.

@andipyk
Created May 12, 2024 10:16
Show Gist options
  • Save andipyk/05c2ddc6a59894198b187afe0c7e176e to your computer and use it in GitHub Desktop.
Save andipyk/05c2ddc6a59894198b187afe0c7e176e to your computer and use it in GitHub Desktop.
<?php
class ParentClass {
public function refresh() {
// Original behavior in the parent class.
}
}
class ChildClass extends ParentClass {
#[\Override]
public function refresh() {
// Custom behavior overriding the new method in the parent class.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment