Skip to content

Instantly share code, notes, and snippets.

@andipyk
Created May 12, 2024 10:16
Show Gist options
  • Save andipyk/17edc4dedd933eb6d6c0959773fc8ffe to your computer and use it in GitHub Desktop.
Save andipyk/17edc4dedd933eb6d6c0959773fc8ffe to your computer and use it in GitHub Desktop.
<?php
interface ObsoleteInterface {
public function oldMethod();
}
class ModernClass implements ObsoleteInterface {
#[\Override]
public function oldMethod() {
// Method implementation, marked as override to signal intended compliance with the deprecated interface.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment