Right-click → "Go to Implementations" on GtdPrintable to jump to GtdPlainPrinter and GtdHtmlPrinter below. Try: Go-to-Implementation on "format" → format() in each implementor
(GtdPrintable $printer)
| 2097 | // to jump to GtdPlainPrinter and GtdHtmlPrinter below. |
| 2098 | // Try: Go-to-Implementation on "format" → format() in each implementor |
| 2099 | public function demo(GtdPrintable $printer): string |
| 2100 | { |
| 2101 | return $printer->format(); |
| 2102 | } |
| 2103 | } |
| 2104 | |
| 2105 | interface GtdPrintable { public function format(): string; } |