<?php interface LoggerInterface { public function log($level, $message, array $context = []); } class Logger implements LoggerInterface { public function log($level, $message, array $context = []): void { } } new Logger();
You have javascript disabled. You will not be able to edit any code.