Skip to content

Instantly share code, notes, and snippets.

@andipyk
Created May 12, 2024 10:08
Show Gist options
  • Save andipyk/a3a137d518b71fd3b28a8722944422eb to your computer and use it in GitHub Desktop.
Save andipyk/a3a137d518b71fd3b28a8722944422eb to your computer and use it in GitHub Desktop.
<?php
interface Formatter {
public function format(string $input): string;
}
trait DefaultFormatter {
#[\Override]
public function format(string $input): string {
// Default formatter simply returns the input as is.
return $input;
}
}
class CustomFormatter {
// Using trait to provide a default implementation.
use DefaultFormatter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment